Interface RevokeTokenOptions

interface RevokeTokenOptions {
    clientID: string;
    clientSecret: string;
    token: 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.

token: string

The access token to revoke.