@vicinae/api
    Preparing search index...

    Interface AuthorizationResponse

    The response returned by OAuth.PKCEClient.authorize, containing the authorization code after the provider redirect. You can then exchange the authorization code for an access token using the provider's token endpoint.

    interface AuthorizationResponse {
        authorizationCode: string;
    }
    Index

    Properties

    authorizationCode: string

    The authorization code from the OAuth provider.