Google checkout callback API sending ack but nothing else?
- by Chris Sobolewski
I am putting together a test google checkout implementation and I cannot seem to get the code in the responsehandler demo to do anything aside from send acknowledgements.
Even something as simple as uncommenting the folling lines
case 'CHARGEABLE': {
$Grequest->SendProcessOrder($data[$root]['google-order-number']['VALUE']);
$Grequest->SendChargeOrder($data[$root]['google-order-number']['VALUE'],'');
break;
Isn't having the expected effect of causing the order to automatically be charged.
The error log googlecheckout creates has no errors in it, and the message log shows that xml is being properly recieved and acknlowlegments are sent.
Does anyone have a clue on how to start troubleshooting this? I am still rather fresh with PHP.