Resources for Developers Using Amazon Associates Web Services
· Home  
· Search  
· Browse Nodes  
· Data Feed?  
· One-Second Rule  
· PHP Examples  
· Tips for Associates  
· Tools  
· Understanding A2S  

Create a custom Amazon Associate Store in minutes with Associate-O-Matic.

Welcome to A2Sdeveloper.com

A2S Developer provides resources for web developers using Amazon Associates Web Services (A2S) - formerly known as Amazon's E-Commerce Services (ECS). A2S is a subset of Amazon Web Services (AWS). A2S provides access to product information from Amazon.com, Amazon.fr, Amazon.ca, Amazon.de, Amazon.co.jp, and Amazon.co.uk.

Latest Articles:

Import Lists of ASINs into Excel
Browsenodes.com provides a couple of simple ways to download a list of Amazon product ASINs and titles which you can easily import into an Excel spreadsheet. By Browse Node (Category) At Browsenodes.com, navigate to a browse node containing the... [More]
Simple Text Links to Amazon.com
Product Links: Amazon provides a number of ways to build Associate links to products at Amazon.com, but the simpliest way is not very well documented. You can use the following URL to create a simple text link to Amazon.com or to link an image... [More]
Are Browse Nodes Disappearing?
The Old-Fashioned Way Amazon uses "browse nodes" to organize its web site and product information. Each browse node may have zero or more products associated with it and, generally, you can think of a browse node as a category of products. ... [More]
What are Search Indexes?
A search index contains a list of products along with meta-data describing the products. Amazon created search indexes to speed up searching (that's obvious from the name). It appears that each search index can have different meta-data based on... [More]
PHP A2S Demo 1 - ItemLookup
The following is a simple example of using PHP to perform an A2S ItemLookup operation and display the information in HTML. It uses functions usually included in PHP version 4 and later. <?... [More]
Does Amazon.com offer a data feed?
New Associates often ask if Amazon.com provides a data feed with information on the products sold by Amazon. Amazon offers "Bulk Data Feeds" which enable you to download information for all Amazon products all at once. The feeds are updated daily... [More]
Displaying a List of New Releases or Top Sellers for a Browse Node
A2Sdeveloper.com provides a tool for displaying a list of new releases or best-selling products in a specified browse node. You can use the tool without any knowledge of programming or A2S. To display a list of the top-selling or newest releases... [More]
Getting REST Results with Simple Caching
Here is a function with demonstrates how to combine fetching REST results from Amazon's A2S servers with a simple caching scheme using a MySQL database. function getPage($url, $maxage=7, $cache = true) { $body = ""; if ($cache) ... [More]
Trimming Descriptions and Reviews
Often you would like to trim a product description or customer review to a shorter length. The following PHP function will trim a string to a desired length. It breaks the string at a space. function cutString($text, $limit) { $text =... [More]
Using Browse Nodes
Amazon.com (like all the Amazon sites) organizes it's web pages using "browse nodes." A browse node originally represented a specific page at Amazon.com, but is now used most often to create a category of related products. A "browse node ID" is... [More]


Copyright © 2008 by Roger Smith