PayPal IPN监听器响应

时间:2012-05-11 21:21:08

标签: php paypal-ipn

在PayPal的沙箱中进行全面测试并使流程完美运行。我已经接受了它并且它无法正常工作。

我通过notify_url从PayPal收到POST数据。然后我使用cmd = _notify-validate将数据发送回PayPal。

使用PayPals记录的代码,我使用它将消息发送到PayPal。

$header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
$fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);

(使用此代码获取响应)

$res = stream_get_contents($fp, 1024);

我回来的回应是:

HTTP/1.1 200 OK
Date: Fri, 11 May 2012 20:51:28 GMT
X-Frame-Options: SAMEORIGIN
Set-Cookie: cwrClyrK4LoCV1fydGbAxiNL6iG=SdeBuKBN39mjr3w791CHr_MlSkoBdDmbxpQOjT_WOicyD_Sg6BYZm8koiEv2-5XBUkCjpXQwFqIxIQgIyo3e7arO8015CVw96dpne2CNjbgc1CvpDlqXn72IBWq%7cW7uYn6Za7ljG4iLtLVcyFoPk8gZD7sr_S8WjwZrZWD8UXzE7KAH3bll9TVik3wbdCFlrZG%7csxrZZHSH5SWBGfrKsIU6Dz-K43j4h37efIkWFcVJVER0ncRxNJ0wANN1Dp3pZpV2PLxC1m%7c1336769488; domain=.paypal.com; path=/; Secure; HttpOnly
Set-Cookie: cookie_check=yes; expires=Mon, 09-May-2022 20:51:28 GMT; domain=.paypal.com; path=/; Secure; HttpOnly
Set-Cookie: navcmd=_notify-validate; domain=.paypal.com; path=/; Secure; HttpOnly
Set-Cookie: navlns=0.0; expires=Thu, 06-May-2032 20:51:28 GMT; domain=.paypal.com; path=/; Secure; HttpOnly
Set-Cookie: Apache=10.73.8.50.1336769488653443; path=/; expires=Sun, 04-May-42 20:51:28 GMT
Vary: Accept-Encoding
Strict-Transport-Security: max-age=14400
Connection: close
Content-Type: text/html; charset=UTF-8
Set-Cookie: TSe9a623=bb3c8ce40a7f3f6d1c018255c9

我没有得到的是此处的INVALID或VERIFIED响应。这是PayPal的全部输出。在沙箱中,我在最后一行获得了VERIFIED,而没有Set-Cookie。

我没有收到INVALID或VERIFIED回复,这似乎很奇怪。

任何建议都将不胜感激。

1 个答案:

答案 0 :(得分:1)

您是否使用fwrite / fputs将请求写入套接字?此外,根据响应的长度判断,您可能需要从流中读取超过1024个字节。那非常接近。

您可能想要循环读取响应:

$resp = '';
while (!feof($fp)) {
    $resp .= stream_get_contents($fp, 1024);
}

然后您可以使用以下方法将标题与正文分开:

list($headers, $response) = explode("\r\n\r\n", 2);