PayPal IPN PHP 握手错误

Posted

技术标签:

【中文标题】PayPal IPN PHP 握手错误【英文标题】:PayPal IPN PHP Handshake Error 【发布时间】:2017-01-02 12:57:29 【问题描述】:

好的,所以我最近开始尝试使用 PayPals IPN,我已经阅读了他们 IPN 上的一些 PayPals 页面,并从这里使用了 php 源:https://developer.paypal.com/docs/classic/ipn/gs_IPN/,我已经完成了整个代码:

<?php

header('HTTP/1.1 200 OK');

$req = 'cmd=_notify-validate';

foreach ($_POST as $key => $value) 
    $value = urlencode(stripslashes($value));
    $req .= "&$key=$value";


$header = "POST /cgi-bin/webscr HTTP/1.1\r\n";

$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";

$header .= "Host: www.sandbox.paypal.com:443\r\n";

$fp = fsockopen ('ssl://www.sandbox.paypal.com', 443, $errno, $errstr, 30);

fputs($fp, $header . $req);

while (!feof($fp))

    $res = fgets($fp, 1024);
    if (strcmp ($res, "VERIFIED") == 0)   

     else if (strcmp ($res, "INVALID") == 0)  

    

    fclose ($fp);

?>

当我使用 PayPal 的 IPN 模拟器时,它说

IPN 未发送,握手未验证。请检查您的信息。

这很奇怪,因为我似乎正确阅读了 PayPal 的 PHP 文档,而且这段代码似乎应该可以工作?可能出了什么问题?

【问题讨论】:

查看这个答案***.com/questions/32586711/… 您知道带有尾随双 \r\n 的标题不是最后一个吗?或者这只是将代码复制到问题中时的错误? @bwoebi 等什么?我的代码是根据 PayPal 在此页面上的代码编写的 developer.paypal.com/docs/classic/ipn/gs_IPN 【参考方案1】:

尝试登录后端。有时 PayPal 的 IPN 监听器会说握手无效,即使它是无效的。

【讨论】:

感谢您告诉我 :)【参考方案2】:

也许尝试使用 cURL 运行相同的东西?

$params = clone $_POST;
$params['cmd'] = '_notify-validate';

$ch = curl_init('https://www.sandbox.paypal.com/cgi-bin/webscr');
curl_setopt_array($ch, array(
    CULROPT_RETURNTRANSFER=>true,
    CURLOPT_POST=>true,
    CURLOPT_POSTFIELDS=>$params
));

$result = curl_exec($ch);
$status = 'unknown';
if($result === false) 
    $status = 'error';
 else 
    if(strcmp($result, 'VERIFIED') == 0) 
         $status = 'verified';
     elseif (strcmp($result, 'INVALID') == 0) 
         $status = 'invalid';
    


echo $status;

【讨论】:

【参考方案3】:

问题是你的请求返回400 Bad Request

这是因为该请求不包含Host 标头(请求被它遇到的第一个\r\n 序列终止,并且Host 标头仅在 this 之后传递),这是 HTTP/1.1 要求的,因此导致请求失败。

现在,将Host 标头放在首位:

$header = "POST /cgi-bin/webscr HTTP/1.1\r\n";

$header .= "Host: www.sandbox.paypal.com:443\r\n";

$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";

它应该可以工作。 (至少我在当地得到了正确的200 OK 回复)。可能还有其他问题,但这些都是无关的。

[顺便说一句。是的,那么贝宝文档上的代码似乎是错误的。]

【讨论】:

以上是关于PayPal IPN PHP 握手错误的主要内容,如果未能解决你的问题,请参考以下文章

PayPal IPN 侦听器 - SSL 证书握手失败

IPN未发送,握手未验证

使用 fsockopen 的警报握手失败 paypal IPN 集成

PayPal IPN 握手问题

PayPal IPN 模拟器:IPN 未发送,握手未验证。请查看您的信息

PayPal IPN HTTP 错误 400 - PHP - 使用 PayPal GIT 代码