Interface ExchangeCodeOptions

interface ExchangeCodeOptions {
    clientID: string;
    clientSecret: string;
    code: string;
    redirectURI: 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.

code: string

The code from the authorization.

redirectURI: string

The redirect uri used in the authorization.