OAuth2.Strategy.ClientCredentials

The Client Credentials Strategy

http://tools.ietf.org/html/rfc6749#section-1.3.4

The client credentials (or other forms of client authentication) can be used as an authorization grant when the authorization scope is limited to the protected resources under the control of the client, or to protected resources previously arranged with the authorization server. Client credentials are used as an authorization grant typically when the client is acting on its own behalf (the client is also the resource owner) or is requesting access to protected resources based on an authorization previously arranged with the authorization server.

Source

Summary

authorize_url(client, params)

Not used for this strategy

get_token(client, params, headers)

Retrieve an access token given the specified strategy

Functions

authorize_url(client, params)

Not used for this strategy.

Source
get_token(client, params, headers)

Retrieve an access token given the specified strategy.

Source