Interface OauthError

interface OauthError {
    error: string;
    error_description: string;
    redirect_uri: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

error: string

Error type

error_description: string

Error description

redirect_uri: string

URI for validation

Generated using TypeDoc