Image | ![]() |
EAN-13 | 9780739485965 ![]() |
Product Name | Dockside (Lakeshore Chronicles, Book 3) |
Category | Book / Magazine / Publication |
Amazon.com | ![]() |
SKU | 903642333 |
Price New | 53.81 US Dollars (curriencies) |
Price Used | 1.96 US Dollars (curriencies) |
Author | Susan Wiggs |
Binding | Hardcover |
Published | 05/24/2017 |
Long Description | With her daughter grown and flown, Nina Romano is ready to embark on a new adventure. She’s waited a long time for dating, travel and chasing dreams. But just as she’s beginning to enjoy being on her own, she finds herself falling for Greg Bellamy, owner of the charming Inn at Willow Lake and a single father with two kids of his own. Greg lost his first marriage to a demanding career. Now he’s determined to make a new start before it’s too late. Juggling work, raising his young son and helping his nearly grown daughter face life’s ultimate challenge, he has no time to fall in love. Still, with Nina Romano, love feels just right this time around. From the award-winning author of Summer at Willow Lake and The Winter Lodge comes an unforgettable story of a woman’s emotional journey from the heartache of the past to hope for the future. |
Similar Items | 9781602853881: Fireside (Center Point Platinum Romance (Large Print)) 9780778321675: Table For Five 9780739492048: Snowfall At Willow Lake (Lakeshore Chronicles, Book 4) 9780739471616: Summer At Willow Lake 9781607516088: Fireside 9780778329664: Summer At Willow Lake (The Lakeshore Chronicles) 9780778326892: Lakeshore Christmas (Lakeshore Chronicles, Book 6) 9780739492635: Snowfall At Willow Lake (The Lakeshore Chronicles) 9780739479155: The Winter Lodge (Lakeshore Chronicles, Book 2) 9781602858640: Summer Brides (Center Point Premier Romance (Large Print)) View 10 more similar items |
Created | 01-19-2013 3:39:11pm |
Modified | 05-01-2020 12:15:05am |
MD5 | 39430063aed64daed2a2def169451fde |
SHA256 | 44740db736beb844bcc09c510ec20e640cd887d235f42104b5782d772303b67c |
Search Google | by EAN or by Title |
Query Time | 0.0277400 |
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.