OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
need an Amazon API to retrieve product reviews- (0 viewing) 

BookLibrary Wishlist

Go to bottom Favoured: 0

Need an Amazon API to retrieve product reviews-

firstuser (User)
Expert Boarder
Posts: 80
graphgraph
User Offline Click here to see the profile of this user
need an Amazon API to retrieve product reviews- 10 Years, 4 Months ago
Karma: 0  
Is there an Amazon API to retrieve product reviews?
or at least - links to the reviews!


btw: found out a official word on the matter:

Dear Product Advertising API Developer,

On November 8, 2010 the Reviews response group of the Product Advertising API will no longer return customer reviews content and instead will return a link to customer reviews content hosted on Amazon.com. You will be able to display customer reviews on your site using that link. Please refer to the Product Advertising API Developer guide found here for more details. The Reviews response group will continue to function as before until November 8 and the new link to customer reviews is available to you now through the Product Advertising API as well.



found a python code that runs well _ but it is in python

Code:



countries=['com','co.uk','ca','de']
books=[
        '''http://www.amazon.%s/Glass-House-Climate-Millennium-ebook/dp/B005U3U69C''',
        '''http://www.amazon.%s/The-Japanese-Observer-ebook/dp/B0078FMYD6''',
        '''http://www.amazon.%s/Falling-Through-Water-ebook/dp/B009VJ1622''',
      ]
import urllib2;
for book in books:
    print '-'*40
    print book.split('%s/')[1]
    for country in countries:
        asin=book.split('/')[-1]; title=book.split('/')[3]
        url='''http://www.amazon.%s/product-reviews/%s'''%(country,asin)
        try: f = urllib2.urlopen(url)
        except: page=""
        page=f.read().lower(); print '%s=%s'%(country, page.count('member-review'))
print '-'*40



cf - on stackoverflow - stackoverflow.com/questions/4811259/is-t...ieve-product-reviews
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8230
graph
User Offline Click here to see the profile of this user
Re:need an Amazon API to retrieve product reviews- 10 Years, 4 Months ago
Karma: 101  
Hello,

as you cite from amazon - it possible add link,

But that will only link, so toy lost possibility self add review

Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
firstuser (User)
Expert Boarder
Posts: 80
graphgraph
User Offline Click here to see the profile of this user
Re:need an Amazon API to retrieve product reviews- 10 Years, 4 Months ago
Karma: 0  
hello dear andrew

great to hear from you

well - agreed,. we cannot include a complete review. and i do not need this.

The question is: can retrieve a amazon-product stream - with some datao

image of the item /(book)
count of reviews (for the book s)
price
and rating

Question- how to include this in a customized Joomla-block. Is this doable!?
And if so: Can i change the items that are fetched.

look forward to hear from you

How to do this - how can i change the items - and show other books or things.
Is this possible
see the link below: just add it into a browser and play around with it

g-ecx.images-amazon.com/images/G/03/asso...amp;rt=as_li_wdgt_ex

any ideas will be greatly appreciated!

love to hear from you


btw .see the example of the above mentioned link in the page-footer at www.php-nuke.de
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8230
graph
User Offline Click here to see the profile of this user
Re:need an Amazon API to retrieve product reviews- 10 Years, 4 Months ago
Karma: 101  
Hi,

Any custom code from amzon or other you may insert to your joomla site with help joomla "Custom HTML module"

Thanks,
Ordasoft team
Logged Logged
The administrator has disabled public write access.
Go to top
»