HttpBearer authentication

The HttpBearer authentication uses a bearer token to allow access to a certain resource or URL. The client must send this token in the Authorization header when making requests to protected resources:

Authorization: Bearer <token>
Parameter Description
method The method is always bearerToken
scheme The token scheme that by default is set to bearerToken
bearerToken The token. The token could be provided by the credential supplier. The token always uses the scheme as the credential name.

See also