Spotify 供應商
資源
設定
回呼 URL
https://example.com/api/auth/callback/spotify
環境變數
AUTH_SPOTIFY_ID
AUTH_SPOTIFY_SECRET
組態設定
/auth.ts
import NextAuth from "next-auth"
import Spotify from "next-auth/providers/spotify"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [Spotify],
})