Google checkout callback API sending ack but nothing else?
        Posted  
        
            by Chris Sobolewski
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Chris Sobolewski
        
        
        
        Published on 2010-03-13T03:46:29Z
        Indexed on 
            2010/03/13
            3:57 UTC
        
        
        Read the original article
        Hit count: 268
        
google-checkout
|php
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.
© Stack Overflow or respective owner