Represents a RFC 7662 compliant OAuth 2.0 Token Introspection endpoint. For more information, see Requesting an access token using an external OAuth 2.0 server.

You can only configure **one** external OAuth 2.0 endpoint per Project. To authenticate using multiple external services (such as social network logins), use a middle layer authentication service.
interface ExternalOAuth {
    authorizationHeader: string;
    url: string;
}

Properties

authorizationHeader: string

Must not contain any leading or trailing whitespaces. Partially hidden on retrieval.

url: string

URL with authorization header.

Generated using TypeDoc