PayPal IPN返回空POST

时间:2015-07-24 09:20:08

标签: php paypal paypal-ipn

我正在使用this method在一个网站中集成PayPal“立即购买”按钮。我已经实现了PayPal sample source on GitHub的官方IPN处理机制。

它重定向到我的指定页面,但POST数据为空。我正在使用file_get_contents(“php:// input”)。

$raw_post_data = file_get_contents('php://input');
$raw_post_array = explode('&', $raw_post_data);

我也将其更改为$_POST,但两者都是空的。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

您提供的信息太少,无法帮助您。

但是,您可以尝试使用即用型课程,例如https://github.com/Quixotix/PHP-PayPal-IPN

这是一个集成它的教程http://www.micahcarrick.com/paypal-ipn-with-php.html