GitHub
获取 GitHub 凭证
要使用 GitHub 登录,你需要一个客户端 ID 和客户端密钥。你可以从 GitHub 开发者平台 获取它们。
对于本地开发,请确保将重定向 URL 设置为 http://localhost:3000/api/auth/callback/github
。对于生产环境,你应该将其设置为你的应用程序的 URL。如果你更改了认证路由的基础路径,你应该相应地更新重定向 URL。
配置提供商
要配置提供商,你需要导入提供商并将其传递给 auth 实例的 socialProviders
选项。
import { betterAuth } from "better-auth"
export const auth = betterAuth({
socialProviders: {
github: {
clientId: process.env.GITHUB_CLIENT_ID as string,
clientSecret: process.env.GITHUB_CLIENT_SECRET as string,
},
},
})
使用 GitHub 登录
要使用 GitHub 登录,你可以使用客户端提供的 signIn.social
函数。signIn
函数接受一个包含以下属性的对象:
provider
:要使用的提供商。应该设置为github
。
import { createAuthClient } from "better-auth/client"
const authClient = createAuthClient()
const signIn = async () => {
const data = await authClient.signIn.social({
provider: "github"
})
}