Disable All Advertising
Image
EAN-130884487104402   EAN-13 barcode 0884487104402
UPC-A884487104402   UPC-A barcode 884487104402
Product NameWallace & Gromit: The Complete Collection (4-Disc): A Matter Of Loaf And Death / A Grand Day Out / W
LanguageEnglish
CategoryElectronics / Photography: A/V Media: Movie / TV
Short DescriptionDVD
Amazon.comA Buy on Amazon ~ B002DPVI0Q
SKU608441
Price New11.37 US Dollars    (curriencies)
Price Used16.97 US Dollars    (curriencies)
Long DescriptionMillions of fans agree – no one makes animated mayhem like crackpot inventor Wallace and his faithful dog, Gromit. Join the Oscar®- winning sensations for four madcap adventures in their cheesiest, breeziest and funniest collection yet! Hang on for an out-of-this-world ride as Wallace’s mad craving for cheese leads to a space rocket adventure in A GRAND DAY OUT. In THE WRONG TROUSERS, Gromit smells something fishy after a penguin moves in and plots to make off with Wallace’s Techno-Trousers. Then it’s time for A CLOSE SHAVE as Wallace & Gromit™ get wrapped up in a sheep-rustling scheme. Finally, trouble rises after Wallace & Gromit start a bread- baking business and are ensnared in a murder mystery that becomes…A MATTER OF LOAF AND DEATH!
Created04-17-2012 8:46:58pm
Modified10-05-2017 4:40:12am
MD5bfb0f1daee2800d9c8de41bcfc09d82a
SHA256aff382e7f047a2ece24ab41294597f44f3f417d9f62858f3eb4f251c617dbb65
Search Googleby EAN or by Title
Query Time0.0060871

An article of interest

Making use of the tools we offer

Data Feed API v3 - Handling Product Images

With version 3.2 comes a new way to handle product images. This should give you more control over the images you display.

Prior to version 3.2, you simply had to check for the existance of the product>image property. If it existed and was not blank, you could safely display the image. 

Starting with version 3.2, you may want to check one more field before you display the product image. Many API users wanted access to the pending images. The only reasonable way to do this was to add a new property named product>hasImage which can be one of four values.

If you are displaying the product images to your users and you DO NOT want to display pending images that have not been checked, you should only display the image if product>hasImage=Yes. If you want to show production and pending images, you can simply check the product>image property if you like. We suggest using product>hasImage as your main check and only display the image if it meets your needs. Here are samples of the JSON structure.

The property product>hasImage will always be regurned even if you specified a list of properties in the "get" string that does not include the image property. The main reason for this is that it is possible to calculate the image path on your side thereby saving the bandwidth of returning the image path.

If you want to calculate the path to the image on your end instead of requesting it from us, you can do this in two ways. 

  1. If product>hasImage=Pending then simply use the path https://eandata.com/image/pending/{13_digit_EAN}.jpg
  2. If product>hasImage=Yes then it gets a little more tricky. We split the images into subfolders because there are so many of them. To calculate the path start with the 13 digit EAN and split it up like this: https://eandata.com/image/product/{1st_3_digits}/{2nd_3_digits}/{3rd_3_digits}/{13_digit_EAN}.jpg

This should make interacting with product and pending images much easier for you. Look at the example JSON shown above for working exmples of image paths.