To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorImages
As an API consumer
I want to look up product images
Because that has some business value.
- Background
-
- Given
-
the following:
@request = Sucker.new( :key => amazon_key, :secret => amazon_secret, :locale => :us)
- Scenarios
-
- Look up images
-
- Given
-
the following:
@request << { :operation => 'ItemLookup', :id_type => 'ASIN', :item_id => '0394751221', :response_group => 'Images' }
- When
-
I tape:
@response = @request.get
- Then
-
I expect:
image_set = @response['ImageSet'].first image_set.should have_key 'SwatchImage' image_set.should have_key 'SmallImage' image_set.should have_key 'ThumbnailImage' image_set.should have_key 'TinyImage' image_set.should have_key 'MediumImage' image_set.should have_key 'LargeImage'
Last published over 7 years ago by hakanensari.