class Fog::Brightbox::OAuth2::ClientCredentialsStrategy

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

Public Instance Methods

authorization_body_data() click to toggle source
# File lib/fog/brightbox/oauth2.rb, line 126
def authorization_body_data
  {
    "grant_type" => "client_credentials",
  }
end