Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

amazon query string 1

Status
Not open for further replies.

skiflyer

Programmer
Joined
Sep 24, 2002
Messages
2,213
Location
US
I'm writing up a little in house library that deals with ISBN's, and I was wondering if anyone knew where to get the documentation for Amazon's query string. I'd like to be able to automatically generate a link which just takes me to the amazon page for that book. I can't use Title's because they're not unique enough.

I've been playing with their SOAP interface, and may go that route, but am having some difficulties with that right now, and am uncertain if they're overcomeable in my environment (i.e. corporate firewall issues)

So, if anyone knows, please let me in on the secrets :)

-Rob
 
Thanks, those were exactly the things I was working with, I remember toying with them from home and they were just dumb simple, but from work I'm running into snags, and am making the assumption it's just a simple matter of our firewall.

In the meantime it appears to me that...
Code:
[URL unfurl="true"]http://www.amazon.com/exec/obidos/ASIN/$isbn[/URL]

Is taking me to my desired page, and without the short delays it takes to run the webservice. But I just can't find any documentation that lets me know in 6 months that that same URL is going to work.

-Rob
 
Download the developer's kit.

The API documentation in the kit states:

<quote>
ASIN and ISBN Searches via XML

Every unique product in Amazon.com's catalog has an &quot;ASIN&quot;, which is short for &quot;Amazon Standard Item Number&quot;. (For our books category, a book's ASIN is the same as its &quot;International Standard Book Number&quot;, or &quot;ISBN&quot;). You can find a product's ASIN in one of two ways:
It should be listed in the fine print on a product's detail page.
Alternatively, you can look in the URL of that same detail page. In most cases, the format of the URL should start like this: The ASIN number is the 10-digit number that appears directly after &quot;ASIN&quot;.

As an example, the following product’s ASIN would be 043935806X:

</quote>


Want the best answers? Ask the best questions: TANSTAAFL!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top