22

使用 PayPal IPN,我不断收到错误 400。

我一直在让脚本向我发送电子邮件,以查看循环$res内的响应是什么。while (!feof($fp)) {}我总是最终得到错误:HTTP/1.0 400 Bad Request

总的来说,我回来了:

HTTP/1.0 400 Bad Request
​Connection: close
Server: BigIP
Content-Length: 19
​Invalid Host Header

​这之后的最后一行是空白的。这是我的代码,我尝试过改变很多东西,但没有任何效果。

$req = 'cmd=_notify-validate';
foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$value = preg_replace('/(.*[^%^0^D])(%0A)(.*)/i','${1}%0D%0A${3}', $value);// IPN fix
$req .= "&$key=$value";
}

// post back to PayPal system to validate
$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.sandbox.paypal.com', 443, $errno, $errstr, 30);

if (!$fp) {
// HTTP ERROR
} else {
   fputs($fp, $header . $req);
   while (!feof($fp)) {
       $res = fgets ($fp, 1024);
       if (strcmp ($res, "VERIFIED") == 0) {
           //ADD TO DB
       } else if (strcmp ($res, "INVALID") == 0) {
           // PAYMENT INVALID & INVESTIGATE MANUALY!
           // E-mail admin or alert user
       }
   }
   fclose ($fp);
}

我添加了一行,这是发送前的标题:

 Host: www.sandbox.paypal.com
 POST /cgi-bin/webscr HTTP/1.0
 Content-Type: application/x-www-form-urlencoded
 Content-Length: 1096
4

6 回答 6

45

由于您自己打开套接字,而不是使用诸如 curl 之类的 HTTP 库,因此您需要设置正确的 HTTP 协议版本并自己在 POST 行下方添加HTTP Host 标头。

$header = "POST /cgi-bin/webscr HTTP/1.1\r\n";
$header .= "Host: www.sandbox.paypal.com\r\n";
于 2012-08-04T18:53:43.103 回答
29

我遇到了同样的问题,这些是必需的更改。上面的一些答案并不能解决所有问题。

标题的新格式:

$header = "POST /cgi-bin/webscr HTTP/1.1\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Host: www.sandbox.paypal.com\r\n";  // www.paypal.com for a live site
$header .= "Content-Length: " . strlen($req) . "\r\n";
$header .= "Connection: close\r\n\r\n";

请注意仅在最后一行额外的 \r\n 集。此外,字符串比较不再有效,因为在服务器的响应中插入了换行符,因此请更改此:

if (strcmp ($res, "VERIFIED") == 0) 

对此:

if (stripos($res, "VERIFIED") !== false)  // do the same for the check for INVALID
于 2012-10-02T00:15:36.380 回答
2

https://www.x.com/content/bulletin-ipn-and-pdt-scripts-and-http-1-1

// post back to PayPal system to validate
$header .="POST /cgi-bin/webscr HTTP/1.1\r\n";
$header .="Content-Type: application/x-www-form-urlencoded\r\n";
$header .="Host: www.paypal.com\r\n";
$header .="Connection: close\r\n";
于 2013-01-05T09:48:52.200 回答
1

我发现使用 fsockopen 的 PayPal 示例代码无法正常工作。

为了使 IPN 与 PHP 一起工作,我使用了 Aireff 从 8 月 5 日开始提出的建议,并在 x.com 网站上使用 curl 技术查看了代码。

于 2012-10-02T09:40:42.347 回答
0

我有同样的问题,最好的办法是使用贝宝示例代码......然后它完美地工作:https ://www.x.com/developers/PayPal/documentation-tools/code-sample/216623

于 2012-08-05T11:09:13.863 回答
0

另一种解决方案是在比较之前修剪 $res ..

$res = fgets ($fp, 1024);

$res = trim($res); //NEW & IMPORTANT
于 2013-08-08T09:07:38.717 回答