Salesforce 提供者
資源
設定
回調網址
https://example.com/api/auth/callback/salesforce
環境變數
AUTH_SALESFORCE_ID
AUTH_SALESFORCE_SECRET
組態
/auth.ts
import NextAuth from "next-auth"
import Salesforce from "next-auth/providers/salesforce"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [Salesforce],
})