Skip to content
Migrating from NextAuth.js v4? Read our migration guide.

Mastodon Provider

리소스

설정

콜백 URL

https://example.com/api/auth/callback/mastodon

환경 변수

AUTH_MASTODON_ID
AUTH_MASTODON_SECRET
AUTH_MASTODON_ISSUER

설정

/auth.ts
import NextAuth from "next-auth"
import Mastodon from "next-auth/providers/mastodon"
 
export const { handlers, auth, signIn, signOut } = NextAuth({
  providers: [Mastodon],
})

참고 사항

  • Mastodon의 아키텍처 특성상, 인증을 진행하려는 인스턴스 URL을 issuer로 정의해야 합니다.
Auth.js © Balázs Orbán and Team - 2025