Image | ![]() |
EAN-13 | 9780875163239 ![]() |
Product Name | It Works: The Famous Little Red Book That Makes Your Dreams Come True! |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Paperback |
Amazon.com | ![]() |
SKU | 3N090612020 |
Price New | 2.89 US Dollars (curriencies) |
Price Used | 2.00 US Dollars (curriencies) |
Width | 0.2 inches (convert) |
Height | 5.8 inches (convert) |
Length | 3.9 inches (convert) |
Weight | 0.8 ounces (convert) |
Author | Rhj |
Page Count | 28 |
Binding | Pamphlet |
Published | 04/19/1992 |
Features | Used Book in Good Condition |
Long Description | IT WORKS presents a concise, definite plan for bettering your conditions in life. It shows you how to use the Mighty Power within that is anxious and willing to serve you if you know how to use it. IT WORKS shows you how. All scientific, psychological and theological explanations are eliminated. Three hundred pages are boiled down to ten minutes of interesting facts, a definite plan and three short rules of accomplishment. Don t let your worldly, objective mind keep you from more prosperity and happiness any longer. Test the power of this simple book that defies tradition and experience. Millions have tried the plan it presents and know in truth that IT DOES WORK. |
Similar Items | 9780140124828: The Power Of Your Subconscious Mind 9780140073386: Write It Down, Make It Happen: Knowing What You Want And Getting It 9780139840975: Zolar's Book of dreams, numbers & lucky days 9780139795916: Your Infinite Power To Be Rich: Use The Power Of Your Subconscious Mind To Obtain The Prosperity You Deserve 9780139226748: Tnt: The Power Within You 9780138110000: The Silva Mind Control Method For Business Managers 9780071831222: Nothing Is Impossible: 7 Steps to Realize Your True Power and Maximize Your Results (Business Books) 9780062544902: Writing On Both Sides Of The Brain: Breakthrough Techniques For People Who Write 9780061579080: Vision Board, The 9780007331376: The Success System That Never Fails View 59 more similar items |
Created | 02-26-2012 9:58:05pm |
Modified | 05-01-2020 4:43:41am |
MD5 | 4b081095c2391e6a4b6f6f19c0032235 |
SHA256 | cc73576c4e6c43d2332914e57f8949713f7e01fae5f71029f554c406af454eba |
Search Google | by EAN or by Title |
Query Time | 0.0237999 |
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.