Amazon recently changed their APIs which and it seems there's no way now to access my WishList on Amazon programmatically using these APIs. Anybody knows any way to do it besides screen-scraping? Maybe some third-party service (I don't mind working with only public data)?
|
For screen scraping, the compact layout style might be helpful: http://bililite.com/blog/2010/10/31/hacking-my-way-to-an-amazon-wishlist-widget/ Update I did some hacking of my own in google spreadsheets and managed to get 2 basic implementations working. Using Google Apps Scripts: Type your wishlist ID into cell A1. Copy and paste the following into a google apps script (Tools > Scripts > Scripts Editor), and run the getWishlist function:
NB, I'm having some probs with regex matching the title / price. Not sure why, but shows the basic idea. Using Google Spreadsheet Functions Type your wishlist ID into cell A1. Type the following function into A2. It will populate the cell and all below it with the id strings for each item in your wishlist:
Type the following function into B2, which will extract the asin from the id string:
Type the following function into B3, which will fetch the offer listing for the asin in B2 and display the title:
Type the following function into B4, which will fetch the offer listing for the asin in B2 and display all the prices:
|
||||
|
|
|
A guy called Justin Scarpetti has created a really neat "api" which scrapes your wishlist and returns the data in json format.
Source: Amazon Wish Lister |
|||
|
|
|
I am thinking about building an iOS app that needs to interface and track the Amazon shopping cart of a user. I was thinking about using the API to search wishlists, but since they deprecated even that feature on October 15th, 2010 (https://affiliate-program.amazon.com/gp/advertising/api/detail/main.html), I think I will go another route. Since all I need to do is ready the contents of the cart or wishlist, I can just load the page in an invisible webview, and then inject some javascript to do the parsing I need. Not the most elegant way to do things, but it will get the job done. Hope this helps. |
|||
|
|
If you're looking for a general-purpose universal wishlist API to code against, we've built one which is free to use: http://www.wishpot.com/help/api.aspx You can add amazon items to a list by ASIN, plus any items from other stores. |
|||||||
|