Backstage
    Preparing search index...

    Interface BackstageIdentityResponse

    Response object containing the BackstageUserIdentity and the token from the authentication provider.

    interface BackstageIdentityResponse {
        expiresInSeconds?: number;
        identity: BackstageUserIdentity;
        token: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    expiresInSeconds?: number

    The number of seconds until the token expires. If not set, it can be assumed that the token does not expire.

    A plaintext description of the identity that is encapsulated within the token.

    token: string

    The token used to authenticate the user within Backstage.