Skip to content
Migrating from NextAuth.js v4? Read our migration guide.

Reddit Provider

리소스

설정

콜백 URL

https://example.com/api/auth/callback/reddit

환경 변수

AUTH_REDDIT_ID
AUTH_REDDIT_SECRET

설정

/auth.ts
import NextAuth from "next-auth"
import Reddit from "next-auth/providers/reddit"
 
export const { handlers, auth, signIn, signOut } = NextAuth({
  providers: [Reddit],
})

참고 사항

  • Reddit은 페이지를 방문할 때마다 인증을 요구합니다.
  • 하나의 Client ID / Client Secret당 하나의 콜백 URL만 허용합니다.
  • 이 프로바이더 템플릿은 1시간짜리 액세스 토큰만 제공하며 “identity” 스코프만 가지고 있습니다. 리프레시 토큰도 얻으려면 다음과 같이 인증 파라미터를 설정해야 합니다:
./auth.ts
export const { handlers, auth, signin, signout } = NextAuth({
  providers: [
    RedditProvider({
      clientId: process.env.REDDIT_CLIENT_ID,
      clientSecret: process.env.REDDIT_CLIENT_SECRET,
      authorization: {
        params: {
          duration: "permanent",
        },
      },
    }),
  ],
})
Auth.js © Balázs Orbán and Team - 2025