Package version:

Represents authentication information in Authorization, ProxyAuthorization, WWW-Authenticate, and Proxy-Authenticate header values.

interface HttpAuthorization {
    scheme: string;
    value: string;
}

Properties

Properties

scheme: string

The scheme to use for authorization.

value: string

the credentials containing the authentication information of the user agent for the resource being requested.