Skip to main content
Version: Next

BitbucketServerOAuthResult

Home > @backstage/plugin-auth-backend > BitbucketServerOAuthResult

Warning: This API is now obsolete.

The Bitbucket Server auth provider was extracted to @backstage/plugin-auth-backend-module-bitbucket-server-provider.

Signature:

export type BitbucketServerOAuthResult = {
fullProfile: PassportProfile;
params: {
scope: string;
access_token?: string;
token_type?: string;
expires_in?: number;
};
accessToken: string;
refreshToken?: string;
};