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

providers/roblox

内置的 Roblox 集成。

RobloxProfile

对应于此处记录的用户结构:https://create.roblox.com/docs/cloud/reference/oauth2 (带有 Profile 范围的示例用户)

扩展

属性

created_at

created_at: number;

name

name: string;

nickname

nickname: string;

picture

picture: null | string;

preferred_username

preferred_username: string;

profile

profile: string;

sub

sub: string;

default()

default(options): OIDCConfig<RobloxProfile>

将 Roblox 登录添加到您的页面。

设置

回调 URL

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

配置

import { Auth } from "@auth/core"
import Roblox from "@auth/providers/roblox"
 
const request = new Request(origin)
const response = await Auth(request, {
  providers: [
    Roblox({
      clientId: AUTH_ROBLOX_ID,
      clientSecret: AUTH_ROBLOX_SECRET,
    }),
  ],
})

资源

免责声明如果您认为您在默认配置中发现了错误,您可以打开一个问题

Auth.js 严格遵守规范,无法对提供者规范的任何偏差负责。您可以打开一个问题,但如果问题是非规范合规性,我们可能不会寻求解决办法。您可以在讨论中寻求更多帮助。

参数

参数类型
optionsOIDCUserConfig<RobloxProfile>

返回值

OIDCConfig<RobloxProfile>

Auth.js © Balázs Orbán 和团队 -2024