Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require 'httparty'
- class BestBuy
- include HTTParty
- base_uri 'api.remix.bestbuy.com'
- default_params :apiKey => 'YOUR_API_KEY_HERE'
- def self.getStores(zip, distance)
- get("/v1/stores(area(#{zip},#{distance}))")
- end
- end
Advertisement