Image | ![]() |
EAN-13 | 9786302989748 ![]() |
Product Name | Thin Ice |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
Price New | 8.75 US Dollars (curriencies) |
Price Used | 3.98 US Dollars (curriencies) |
IMDb | ![]() |
Run Time | 79 minutes |
Cast | Sonja Henie, Tyrone Power, Arthur Treacher, Raymond Walburn |
Director | Sidney Lanfield |
Genre | COMEDY,MUSICAL,ROMANCE |
Run Time | 79 minutes |
Binding | VHS Tape |
Release Year | 1937 |
Format | Black & White, Closed-captioned, NTSC |
Run Time | 79 minutes |
Long Description | Lili is a skating instructor at a grand hotel in the Alps. An international conference is booked at the hotel. The conference is led by Prince Rudolph, whose plan is really to keep a pair of feuding countries at odds with each other. Feining illness, the Prince moves into a small inn so he can enjoy some skiing in private -- and delay the conference. One morning he meets Lili on the slopes and they hit it off; but she has no idea her "Rudy" is the Prince. That evening Lili is seen leaving the Prince's car, having been given a ride home by her beau, a cousin of the Prince's chauffeur. Tongues wag and Lili is thought to be romantically involved with the Prince. This gets her lots of attention and a starring role in her own ice skating revue. But when she finds out people think she is involved with the Prince she is horrified, while Rudy is amused and plays along. |
Similar Items | 9786302989731: Wintertime [VHS] 9786302989724: Iceland [VHS] 9786302989700: My Lucky Star [VHS] 9786302989694: One in a Million [VHS] 9786302989687: Happy Landing [VHS] 9786302989670: Everything Happens at Night [VHS] 9786302985948: Second Fiddle [VHS] 9786302136227: Sun Valley Serenade [VHS] |
Created | 03-13-2013 1:03:39am |
Modified | 04-10-2020 4:12:02pm |
MD5 | 54efa6f8be4a35f614a0578e1d0a9cee |
SHA256 | 3f7b9ac55c50a8a7fd4afdc8342ba48e19e606146192cdd394cd840dfcbb32fa |
Search Google | by EAN or by Title |
Query Time | 0.0169349 |
Article of interest
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.
- Unknown (should never actually appear in the API)
- Yes (a production image exists)
- No (there is no image)
- Pending (a pending image exists)
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.
- If product>hasImage=Pending then simply use the path https://eandata.com/image/pending/{13_digit_EAN}.jpg
- 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.