Image | ![]() |
EAN-13 | 9780800178833 ![]() |
Product Name | From Here to Eternity |
Language | English |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
Model | 9531 |
Price New | 5.98 US Dollars (curriencies) |
Price Used | 1.99 US Dollars (curriencies) |
Aspect Ratio | 1.33:1 |
Cast | Burt Lancaster, Montgomery Clift, Deborah Kerr, Donna Reed, Frank Sinatra |
Width | 5.75 inches (convert) |
Height | 0.53 inches (convert) |
Length | 7.75 inches (convert) |
Weight | 4 ounces (convert) |
Binding | Dvd |
Format | Multiple Formats, Black & White, Closed-captioned, NTSC, Subtitled |
Published | 10/01/2001 |
Run Time | 122 minutes |
Features | DRAMA, Run Time: 118, Release Date: 3/6/2007, NR, BURT LANCASTER MONTGOMERY CLIFT |
Long Description | In this landmark film, passion and tragedy collide on a military base as a fateful day in December 1941 draws near. Private Prewitt (Montgomery Clift) is a soldier and former boxer being manipulated by his superior and peers. His friend Maggio (Frank Sinatra) tries to help him but has his own troubles. Sergeant Warden (Burt Lancaster) and Karen Holmes (Deborah Kerr) tread on dangerous ground as lovers in an illicit affair. Each of their lives will be changed when their stories culminate in the Japanese attack on Pearl Harbor. Winner of eight Oscars(r), including Best Picture, Best Director and Best Supporting awards for Sinatra in a career-defining role and for Donna Reed as a not-so-wholesome club hostess. |
Similar Items | 0883929243716: Casablanca 70th Anniversary Special Edition 0883929112920: Casablanca (Warner Brothers/ Academy Awards Gold O-Sleeve) 0883904100805: Apartment 0085393337124: Man with the Golden Arm 0043396784093: On the Waterfront 0043396163249: Caine Mutiny 0043396052789: Bridge On The River Kwai (Movie-Only Edition) 0043396047525: Suddenly, Last Summer 0032429273338: A Place in the Sun 0024543507321: All About Eve View 25 more similar items |
Created | 10-07-2013 12:53:22am |
Modified | 05-01-2020 1:56:38am |
MD5 | 37bef34381e3789889128a8928f643e8 |
SHA256 | abcf381cb235823061d1f7b200e646f9988c6bcd88d54d51b3d05011269065c3 |
Search Google | by EAN or by Title |
Query Time | 0.0195901 |
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.