Backstage
    Preparing search index...

    Interface OAuthRouteHandlersOptions<TProfile>

    interface OAuthRouteHandlersOptions<TProfile> {
        additionalScopes?: string[];
        appUrl: string;
        authenticator: OAuthAuthenticator<any, TProfile>;
        baseUrl: string;
        config: Config;
        cookieConfigurer?: CookieConfigurer;
        isOriginAllowed: (origin: string) => boolean;
        profileTransform?: ProfileTransform<OAuthAuthenticatorResult<TProfile>>;
        providerId: string;
        resolverContext: AuthResolverContext;
        signInResolver?: SignInResolver<OAuthAuthenticatorResult<TProfile>>;
        stateTransform?: OAuthStateTransform;
    }

    Type Parameters

    • TProfile
    Index

    Properties

    additionalScopes?: string[]
    appUrl: string
    authenticator: OAuthAuthenticator<any, TProfile>
    baseUrl: string
    config: Config
    cookieConfigurer?: CookieConfigurer
    isOriginAllowed: (origin: string) => boolean
    providerId: string
    resolverContext: AuthResolverContext
    stateTransform?: OAuthStateTransform