Question

How can I list the items the user has purchased on the amazon checkout screen? I'm checking items out from my store and using amazon just for payments, I do not checkout any amazon products.

The checkout screen just shows this and the name of the buyer:

Details: Cart
Total Amount: $3.19

Is there any way to list the items he has purchased there? I'm using the AmazonFPS php SDK.

Was it helpful?

Solution

Solved it:

$pipeline = new Amazon_FPS_CBUISingleUsePipeline(/*...*/)
//...
$items = implode("<br />", Set::extract($cart, 'Cart/CartItem/name'));
$pipeline->addParameter("paymentReason", $items);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top