brandmward

Rails Remix Alternative

May 8th, 2014
5,467
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.24 KB | None | 0 0
  1. require 'httparty'
  2.  
  3. class BestBuy
  4.   include HTTParty
  5.   base_uri 'api.remix.bestbuy.com'
  6.   default_params :apiKey => 'YOUR_API_KEY_HERE'
  7.  
  8.   def self.getStores(zip, distance)
  9.     get("/v1/stores(area(#{zip},#{distance}))")
  10.   end
  11. end
Advertisement