Skip to main content

OAuthResult

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

Warning: This API is now obsolete.

Use OAuthAuthenticatorResult<PassportProfile> from @backstage/plugin-auth-node instead

Signature:

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