Module: Mercadopago::Client::Authentication

Included in:
Mercadopago::Client
Defined in:
app/models/mercadopago/client/authentication.rb

Instance Method Summary collapse

Instance Method Details

#authenticateObject



7
8
9
10
11
12
13
# File 'app/models/mercadopago/client/authentication.rb', line 7

def authenticate
  response = send_authentication_request
  @auth_response = JSON.parse(response)
rescue RestClient::Exception => e
  @errors << I18n.t(:authentication_error, scope: :mercadopago)
  raise e.message
end