1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
httparty/examples/aaws.rb

37 lines
1.1 KiB
Ruby
Raw Normal View History

require 'rubygems'
2010-06-08 17:15:55 -04:00
require 'active_support'
require 'active_support/core_ext/hash'
require 'active_support/core_ext/string'
dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
require File.join(dir, 'httparty')
require 'pp'
2015-04-18 14:38:40 +02:00
config = YAML.load(File.read(File.join(ENV['HOME'], '.aaws')))
module AAWS
class Book
include HTTParty
base_uri 'http://ecs.amazonaws.com'
default_params Service: 'AWSECommerceService', Operation: 'ItemSearch', SearchIndex: 'Books'
2013-04-18 21:09:21 +09:00
def initialize(key)
@auth = { AWSAccessKeyId: key }
end
2013-04-18 21:09:21 +09:00
def search(options = {})
raise ArgumentError, 'You must search for something' if options[:query].blank?
2013-04-18 21:09:21 +09:00
# amazon uses nasty camelized query params
options[:query] = options[:query]
.reverse_merge(@auth)
.transform_keys { |k| k.to_s.camelize }
2013-04-18 21:09:21 +09:00
# make a request and return the items (NOTE: this doesn't handle errors at this point)
self.class.get('/onca/xml', options)['ItemSearchResponse']['Items']
end
end
end
aaws = AAWS::Book.new(config[:access_key])
2016-11-08 15:20:36 +01:00
pp aaws.search(query: { title: 'Ruby On Rails' })