Beyond Identity Provider
리소스
설정
콜백 URL
https://example.com/api/auth/callback/beyondidentity
환경 변수
AUTH_BEYOND_IDENTITY_ID
AUTH_BEYOND_IDENTITY_SECRET
AUTH_BEYOND_IDENTITY_ISSUER
설정
/auth.ts
import NextAuth from "next-auth"
import BeyondIdentity from "next-auth/providers/beyondidentity"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [BeyondIdentity],
})