in app.rb [106:126]
def get_shop_access_token(shop,client_id,client_secret,code)
if @tokens[shop].nil?
url = "https://#{shop}/admin/oauth/access_token"
payload = {
client_id: client_id,
client_secret: client_secret,
code: code}
response = HTTParty.post(url, body: payload)
if response.code == 200
@tokens[shop] = response['access_token']
else
return [500, "Something went wrong."]
end
instantiate_session(shop)
end
end