class Fog::Brightbox::OAuth2::ClientCredentialsStrategy

This implements client based authentication/authorization based on the existing trust relationship using the `none` grant type.

Public Instance Methods

authorization_body_data() click to toggle source
# File lib/fog/brightbox/oauth2.rb, line 119
def authorization_body_data
  {
    "grant_type" => "none",
    "client_id"  => @credentials.client_id
  }
end