贝宝IPN错误请求400错误(PayPal IPN Bad Request 400 Error)

2019-06-26 17:54发布

使用贝宝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

Answer 1:

既然你自己打开插座,而不是使用HTTP库如卷曲,你需要设置正确的HTTP协议版本,并添加HTTP主机头自己只是POST线以下。

$header = "POST /cgi-bin/webscr HTTP/1.1\r\n";
$header .= "Host: www.sandbox.paypal.com\r\n";


Answer 2:

我也有同样的问题,这些都是必要的更改。 上面的一些不要的答案解决所有的问题。

对于头新格式:

$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


Answer 3:

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";


Answer 4:

我已经使用fsockopen无法正常工作发现PayPals示例代码。

为了使IPN工作与PHP我用Aireff的建议,从8月5日和使用上x.com网站卷曲技术看了看代码。



Answer 5:

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



Answer 6:

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

$res = fgets ($fp, 1024);

$res = trim($res); //NEW & IMPORTANT


文章来源: PayPal IPN Bad Request 400 Error