Slack (OpenID)
OAuth 2.0 provider for Slack (OpenID Connect).
Also see the OAuth 2.0 guide.
Initialization
The redirect URI is optional.
import { SlackOIDC } from "arctic";
const slack = new SlackOIDC(clientId, clientSecret, null);
const slack = new SlackOIDC(clientId, clientSecret, redirectURI);
Create authorization URL
The openid
scope is required.
import { generateState } from "arctic";
const state = generateState();
const scopes = ["openid", "profile"];
const url = slack.createAuthorizationURL(state, scopes);
Validate authorization code
validateAuthorizationCode()
will either return an OAuth2Tokens
, or throw one of OAuth2RequestError
, ArcticFetchError
, or a standard Error
(parse errors). Slack will return an access token (no expiration) and an ID token.
import { OAuth2RequestError, ArcticFetchError } from "arctic";
try {
const tokens = await slack.validateAuthorizationCode(code);
const accessToken = tokens.accessToken();
const idToken = tokens.idToken();
} 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
Decode the ID token or the userinfo
endpoint to get the user profile. Arctic provides decodeIdToken()
for decoding the token's payload.
import { decodeIdToken } from "arctic";
const claims = decodeIdToken(idToken);
const response = await fetch("https://openidconnect.googleapis.com/v1/userinfo", {
headers: {
Authorization: `Bearer ${accessToken}`
}
});
const user = await response.json();
Make sure to add the profile
scope to get the user profile and the email
scope to get the user email.
const scopes = ["openid", "profile", "email"];
const url = slack.createAuthorizationURL(state, codeVerifier, scopes);