I'm new to Google Checkout, I went throw the examples but still have some problems. I'm able to create the order throw HTML and XML, but I need to be able to know in my system that the order was paid. I try the notification callback an polling, but I'm not sure how can I link the Google order with my order in the system. I check the response XML but didn't found any way how to post my ID and get it back. There is merchant-private-data, but I'm not getting the value back. Can anyone help me?
0
votes
3 Answers
1
votes
When submitting orders using google checkout, keep an order in your system with unique order ID, this id is sent to google as merchant private data. Once google process the orders, it will notify the reposnse throught API call back URL. We can read the data in response handler file and modify the order accordingly.
1
votes
0
votes
When you get back the notification, you should be able to read the merchant-private-data.
See this answer which touches on a similar issue.