Class: Fog::Brightbox::OAuth2::ClientCredentialsStrategy
- Inherits:
-
GrantTypeStrategy
- Object
- GrantTypeStrategy
- Fog::Brightbox::OAuth2::ClientCredentialsStrategy
- Defined in:
- lib/fog/brightbox/oauth2.rb
Overview
This implements client based authentication/authorization based on the existing trust relationship using the ‘none` grant type.
Instance Method Summary collapse
Methods inherited from GrantTypeStrategy
Constructor Details
This class inherits a constructor from Fog::Brightbox::OAuth2::GrantTypeStrategy
Instance Method Details
#authorization_body_data ⇒ Object
117 118 119 120 121 122 |
# File 'lib/fog/brightbox/oauth2.rb', line 117 def { "grant_type" => "none", "client_id" => @credentials.client_id } end |