Module: BlommingApi::OauthEndpoint

Included in:
Client
Defined in:
lib/blomming_api/oauth_endpoint.rb

Instance Method Summary collapse

Instance Method Details

#authentication_detailsObject



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/blomming_api/oauth_endpoint.rb', line 67

def authentication_details
  "\n" +
  "  config file: #@config_file\n" +
  "     services: #{@services}\n" +
  "   grant_type: #{@grant_type}\n" +
  "     username: #{@username}\n" +
  "     password: #{@password}\n" +
  "    client_id: #{@client_id}\n" +
  "client_secret: #{@client_secret}\n" +
  "\n" +
  "   token_type: #{@token_type}\n" +
  " access_token: #{@access_token}\n" +
  "   expires_in: #{@expires_in}\n" +
  "refresh_token: #{@refresh_token}\n" +
  "\n"
end