Created
August 14, 2014 20:37
-
-
Save derwiki/151a0f485431e8f5754f to your computer and use it in GitHub Desktop.
Example thin JSON API client in Ruby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'httparty' | |
class PixelPeeper | |
include HTTParty | |
base_uri 'www.pixel-peeper.com' | |
def api_key | |
ENV['PIXELPEEPER_API_KEY'] | |
end | |
def base_path | |
"/rest/?method=list_photos&api_key=#{ api_key }" | |
end | |
def examples_for_camera(camera_id, options = {}) | |
url = "#{ base_path }&camera=#{ camera_id }" | |
self.class.get(url, options)['data']['results'] | |
end | |
def examples_for_lens(lens_id, options = {}) | |
url = "#{ base_path }&lens=#{ lens_id }" | |
self.class.get(url, options)['data']['results'] | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment