react-native-background-geolocation@5.0.0-beta.1
    Preparing search index...

    Interface TransistorAuthorizationToken

    Represents an authorization token issued by a Transistorsoft Tracking Server.

    Returned from TransistorAuthorizationService.findOrCreate and consumed by Config.authorization / transistorAuthorizationToken flows.

    interface TransistorAuthorizationToken {
        accessToken: string;
        refreshToken: string;
        expires: number;
        url: string;
    }
    Index

    Properties

    accessToken: string

    JWT access token used for Authorization: Bearer <token>.

    refreshToken: string

    JWT refresh token used at the refreshUrl endpoint.

    expires: number

    Expiry time of the access token (epoch milliseconds). Typically used to drive AuthorizationConfig.expires.

    url: string

    Base tracker server URL that issued this token.