MonoCloud Authentication SDK
    Preparing search index...

    Defines the parameters received in the callback URL after authorization

    interface CallbackParams {
        accessToken?: string;
        code?: string;
        error?: string;
        errorDescription?: string;
        expiresIn?: number;
        idToken?: string;
        refreshToken?: string;
        sessionState?: string;
        state?: string;
    }
    Index

    Properties

    accessToken?: string

    Access token received from the callback

    code?: string

    Authorization code received from the callback

    error?: string

    Error message specifying the cause of authentication failure

    errorDescription?: string

    Explanation of the reason for authentication failure

    expiresIn?: number

    Expiry of the access token in seconds

    idToken?: string

    ID token received from the callback

    refreshToken?: string

    Refresh token received from the callback

    sessionState?: string

    A string that represents the End-User's login state. The sessionState can be used to track the user's session in the frontend

    state?: string

    State received from the authorization server