Notion Provider
리소스
설정
Callback URL
https://example.com/api/auth/callback/notion
환경 변수
AUTH_NOTION_ID
AUTH_NOTION_SECRET
AUTH_NOTION_REDIRECT_URI
설정
/auth.ts
import NextAuth from "next-auth"
import Notion from "next-auth/providers/notion"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [
Notion({
clientId: process.env.AUTH_NOTION_ID,
clientSecret: process.env.AUTH_NOTION_SECRET,
redirectUri: process.env.AUTH_NOTION_REDIRECT_URI,
}),
],
})
주의사항
oauth_id
와oauth_secret
을 얻으려면 설정 페이지에서 “Public Integration”을 선택해야 합니다. Private 통합은 이러한 정보를 제공하지 않습니다.- 이 프로바이더를 사용하려면
clientId
와clientSecret
을 제공해야 하며, 리디렉션 URI도 필요합니다 (Notion 엔드포인트가 토큰을 가져오기 위해 이를 요구하기 때문입니다).