Question:
Using the Amazon API it seems that it’s not possible anymore to get the review rank information of a product. Checking this link the note says:
As of November 8, 2010, only the iframe URL is returned in the request
content.
However, testing with the params they suggest to get the Iframe, but it seems that now even the Iframe doesn’t work anymore. Thus, even in the latest API Reference in the chapter “Motivating Customers to Buy” the part “reviews” is completely missing.
However: Since I’m also very interested if it’s still possible somehow to get the review rank information – maybe even not using the Amazon API but a competitor’s API to get review rank information – I hope someone can provide something helpful on this topic.
Answer:
Preamble: I’m not sure that I understand exactly what you are looking for here but I’ll share my findings anyways.
I was able to retrieve the iframe URL for the reviews and was able to see the reviews iframe after embedding it into an .html page. I used the following attributes to retrieve the iframe URL:
1 2 3 4 5 6 7 8 |
Operation=ItemLookup& ItemId=1451648537& ResponseGroup=Reviews& TruncateReviewsAt="256"& IncludeReviewsSummary="False"& Version=2011-08-01 <= important: can't be less than this version AssociateTag= |
The relevant part of the response:
1 2 3 4 5 6 7 8 |
Note that you will not be able to use this iframe URL due to the fact that (1) I’ve removed my Amazon Key and the Associate Tag that was used to create the signature and (2) it expires 24 hours after the call.
If you use the same attributes that I’ve used, paying close attention to the Version
and AssociateTag
fields, you will get a result with an iframe URL included.
I then embedded the url in an iframe:
1 2 3 4 5 6 |
Which looked like the following:
As I said in the preamble, I’m unsure if this is what you are looking for since the requirements for the bounty was:
…to get access to amazons reviewrank informations
This isn’t exactly the review rank information but the actual reviews and I take the meaning of review rank info to be more along the lines of the data itself (such as 100 reviews @ 4 stars etc.). However, in your question you stated that the iframe did not work:
However, testing with the params they suggest to get the Iframe, but it seems that now even the Iframe doesn’t work anymore.
So I thought that I would at least provide you with the proper method of getting and using the iframe.