lib/ebay/oauth/client_credentials_grant.rb in ebay-ruby-0.3.2 vs lib/ebay/oauth/client_credentials_grant.rb in ebay-ruby-0.3.3
- old
+ new
@@ -35,10 +35,10 @@
# Requests a client credentials grant
#
# @return [HTTP::Response]
def request
- HTTP.basic_auth(user: app_id, pass: cert_id)
+ http.basic_auth(user: app_id, pass: cert_id)
.post(endpoint, form: payload)
end
private