Reputation: 321
I've recently been trying to gather a small database of books that I have ISBNs for. My options are limited because I need, among other things, a description, which isn't common in services like this. From what I've gathered, one of the best ways to do this is using Amazon's API.
I've been here where people recommended using Amazon's API, and both there and here they mentioned that the old way used in those answers is now deprecated. Unfortunately, Amazon's own documentation for this thing is horrifically terrible, and I can't seem to find any resources to use it.
Does anyone have tips on what to do, or good places to learn how to do this with Amazon? If there are better alternatives, I'm also glad to take those.
Upvotes: 0
Views: 187
Reputation: 101
I would go about this in two steps:
details on the API request from the docs.
You'll find the description after the <div id="bookDescription_feature_div" class="feature" data-feature-name="bookDescription">
div of the crawled page.
Upvotes: 1