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

Mastodon 提供者

资源

设置

回调 URL

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

环境变量

AUTH_MASTODON_ID
AUTH_MASTODON_SECRET
AUTH_MASTODON_ISSUER

配置

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

注意

  • 由于 Mastodon 的架构方式,您必须将 issuer 定义为要针对其进行身份验证的实例 URL
Auth.js © Balázs Orbán 和团队 -2024