Arctic v1

Bitbucket

For usage, see OAuth 2.0 provider.

import { Bitbucket } from "arctic";

const bitbucket = new Bitbucket(clientId, clientSecret, redirectURI);
const url: URL = await bitbucket.createAuthorizationURL(state, {
	// optional
	scopes
});
const tokens: BitbucketTokens = await bitbucket.validateAuthorizationCode(code);
const tokens: BitbucketTokens = await bitbucket.refreshAccessToken(refreshToken);

Get user profile

Add the account scope and use the /user endpoint.

const url = await bitbucket.createAuthorizationURL(state, {
	scopes: ["account"]
});
const tokens = await bitbucket.validateAuthorizationCode(code);
const response = await fetch("https://api.bitbucket.org/2.0/user", {
	headers: {
		Authorization: `Bearer ${tokens.accessToken}`
	}
});
const user = await response.json();