跳至内容
从 NextAuth.js v4 迁移?阅读 我们的迁移指南.
入门提供者Foursquare

Foursquare 提供者

资源

安装

回调 URL

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

环境变量

AUTH_FOURSQUARE__ID
AUTH_FOURSQUARE_SECRET

配置

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

注意

  • Foursquare 在 YYYYMMDD 格式中需要一个额外的 apiVersion 参数,它本质上表示“我已准备好接受截至此日期的 API 更改”。
Auth.js © Balázs Orbán and Team -2024