Interface RefreshTokenOptions

interface RefreshTokenOptions {
    clientID: string;
    clientSecret: string;
    refreshToken: string;
}

Properties

clientID: string

The id of the client the authorization was performed with.

clientSecret: string

The secret of the client the authorization was performed with.

refreshToken: string

The refresh token from when the code was exchanged.