Apple 提供商
资源
设置
回调 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],
})