跳至内容
从 NextAuth.js v4 迁移?阅读 我们的迁移指南.

Dribbble 提供者

资源

设置

回调 URL

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

环境变量

AUTH_DRIBBBLE_ID
AUTH_DRIBBBLE_SECRET

配置

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

注释

  • 您可选择将范围设置为 public upload 以实现更高级的场景。如果省略,将使用默认的 public 范围用于身份验证目的。
Auth.js © Balázs Orbán 和团队 -2024