WorkOS
OAuth 2.0 provider for WorkOS.
Also see the OAuth 2.0 guide.
Initialization
import { WorkOS } from "arctic";
const workos = new WorkOS(clientId, clientSecret, redirectURI);
Create authorization URL
import { generateState } from "arctic";
const state = generateState();
const url = workos.createAuthorizationURL(state);
Validate authorization code
validateAuthorizationCode()
will either return an OAuth2Tokens
, or throw one of OAuth2RequestError
, ArcticFetchError
, or a standard Error
(parse errors). WorkOS will only return an access token (no expiration).
import { OAuth2RequestError, ArcticFetchError } from "arctic";
try {
const tokens = await workos.validateAuthorizationCode(code);
const accessToken = tokens.accessToken();
} catch (e) {
if (e instanceof OAuth2RequestError) {
// Invalid authorization code, credentials, or redirect URI
const code = e.code;
// ...
}
if (e instanceof ArcticFetchError) {
// Failed to call `fetch()`
const cause = e.cause;
// ...
}
// Parse error
}
Get user profile
The profile is included in the token response.
const tokens = await workos.validateAuthorizationCode(code);
if (
"profile" in tokens.data &&
typeof tokens.data.profile === "object" &&
tokens.data.profile !== null
) {
const profile = tokens.data.profile;
}