Roblox

获取 Roblox 凭证

Roblox Creator Hub 获取你的 Roblox 凭证。

对于本地开发,请确保将重定向 URL 设置为 http://localhost:3000/api/auth/callback/roblox。对于生产环境,你应该将其设置为你的应用程序的 URL。如果你更改了认证路由的基础路径,你应该相应地更新重定向 URL。

Roblox API 不提供电子邮件地址。作为替代方案,用户的 email 字段使用 preferred_username 值。

配置提供商

要配置提供商,你需要导入提供商并将其传递给 auth 实例的 socialProviders 选项。

auth.ts
import { betterAuth } from "better-auth" 
 
export const auth = betterAuth({
    socialProviders: {
        roblox: { 
            clientId: process.env.ROBLOX_CLIENT_ID as string, 
            clientSecret: process.env.ROBLOX_CLIENT_SECRET as string, 
        }, 
    },
})

使用 Roblox 登录

要使用 Roblox 登录,你可以使用客户端提供的 signIn.social 函数。signIn 函数接受一个包含以下属性的对象:

  • provider:要使用的提供商。应该设置为 roblox
auth-client.ts
import { createAuthClient } from "better-auth/client"
const authClient =  createAuthClient()
 
const signIn = async () => {
    const data = await authClient.signIn.social({
        provider: "roblox"
    })
}

On this page