Interface RevokeTokenParams

interface RevokeTokenParams {
    clientId: string;
    clientSecret: string;
    token: string;
}

Properties

clientId: string

The client ID, obtained during app registration.

clientSecret: string

The client secret, obtained during app registration.

token: string

The previously obtained token, to be invalidated.