I hope this is the right place to ask this question.
I am trying to implement google checkout. As the callback url, I have
http://mysite/google/callback where google is controller and callback is
action. in callback action I have
$params = $this->_request;
$logger = Zend_Registry::get('logger');
$logger->VARDUMP(Zend_Debug::dump($params));
just to see what I am receiving from google.
google definitely calls this url but I don't see any params (just the usual
controller,module etc).
am I doing something wrong?
My old site had the same function (without MVC of course) like this
if (($HTTP_RAW_POST_DATA) && ($_SERVER['PHP_AUTH_USER'] ===
$GLOBALS["merchant_id"]) && ($_SERVER['PHP_AUTH_PW'] ===
$GLOBALS["merchant_key"])) {
$xml_data = $HTTP_RAW_POST_DATA;
where $xml_data is what google sending.
--
View this message in context:
http://www.nabble.com/Google-checkout-callback-url-tp14643150s16154p14643150.html
Sent from the Zend Framework mailing list archive at Nabble.com.