class AppleSignIn::ApiCaller

Public Instance Methods

get(url, body = {}) click to toggle source
# File lib/apple_sign_in/api_caller.rb, line 14
def get(url, body = {})
  httparty.get("#{apple_base_url}#{url}", body: body)
end
post(url, body) click to toggle source
# File lib/apple_sign_in/api_caller.rb, line 10
def post(url, body)
  httparty.post("#{apple_base_url}#{url}", body: body)
end