Arctic v1

Roblox

Implements OpenID Connect.

For usage, see OAuth 2.0 provider with PKCE.

import { Roblox } from "arctic";

const roblox = new Roblox(clientId, clientSecret, redirectURI);
const url: URL = await roblox.createAuthorizationURL(state, codeVerifier, {
	// optional
	scopes // "openid" always included
});
const tokens: RobloxTokens = await roblox.validateAuthorizationCode(code, codeVerifier);
const tokens: RobloxTokens = await roblox.refreshAccessToken(refreshToken);

Get user profile

Add the profile scope.

const url = await roblox.createAuthorizationURL(state, codeVerifier, {
	scopes: ["profile"]
});

Parse the ID token or use the userinfo endpoint.

const tokens = await roblox.validateAuthorizationCode(code, codeVerifier);
const response = await fetch("https://apis.roblox.com/oauth/v1/userinfo", {
	headers: {
		Authorization: `Bearer ${tokens.accessToken}`
	}
});
const user = await response.json();