Apple Provider
리소스
참고: Apple은 현재 RedirectProxyUrl 사용을 지원하지 않습니다.
설정
콜백 URL
https://example.com/api/auth/callback/apple
환경 변수
AUTH_APPLE_ID
AUTH_APPLE_SECRET
설정
./auth.ts
import NextAuth from "next-auth"
import Apple from "next-auth/providers/apple"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [Apple],
})