GithubOAuthResult
Home > @backstage/plugin-auth-backend
> GithubOAuthResult
Warning: This API is now obsolete.
Migrate the auth plugin to the new backend system https://backstage.io/docs/backend-system/building-backends/migrating\#the-auth-plugin
Signature:
export type GithubOAuthResult = {
fullProfile: PassportProfile;
params: {
scope: string;
expires_in?: string;
refresh_token_expires_in?: string;
};
accessToken: string;
refreshToken?: string;
};