views:

19

answers:

1

I'm working on a site that will create pre-set packages of items. To start, I'm using Amazon to test the idea, pulling some affiliate sales, and then I'll fulfill orders myself if the idea deems successful.

My goal is to have a "buy now" type button, and upon clicking, the user will arrive at an Amazon checkout now page, with a cart pre-filled with items of my choosing, and my affiliate number.

I'm a PHP developer, so if a solution must be language specific, that's the language to go with. If it's more of a conceptual answer, or if there's an API for this, that works too.

Thanks in advance.

+1  A: 

Amazon does not allow you to add items to someone's cart. They require that the user making the purchase click the add to cart button.

The best you can do for this is to create a Listmania! list with the items. You can see more details about how to do that here.

You then need to make an affiliate link to the list, and instruct the user to click the 'Add all Items to Cart' button at the bottom of the list.

Unfortunately, there is no way to make this take less clicks for the user since Amazon does not want users accidentally purchasing items they did not want.

Alan Geleynse
Great, thanks Alan.
hookedonwinter