Skip to content

Instantly share code, notes, and snippets.

@ferencbeutel4711
Last active August 29, 2015 14:11
Show Gist options
  • Save ferencbeutel4711/250013dc8c6fce5e10cb to your computer and use it in GitHub Desktop.
Save ferencbeutel4711/250013dc8c6fce5e10cb to your computer and use it in GitHub Desktop.
start_page
require 'aboutyou-sdk'
ay = AY.new('100', '3ed93394c2b5ebd12c104b177b928ad0')
criteria = ay.product_search_criteria.select_product_fields([
AboutYou::SDK::Criteria::ProductFields::DEFAULT_IMAGE
])
products = ay.fetch_product_search(criteria).products
products.each do |product|
puts 'Image Source:' + product.default_image.url(500, 500)
puts product.name
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment