PayPal IPN错误请求400错误

时间:2012-08-04 16:55:39

标签: php paypal paypal-ipn

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

6 个答案:

答案 0 :(得分:44)

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

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

答案 1 :(得分:28)

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

标题的新格式:

$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

答案 2 :(得分: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";

答案 3 :(得分:1)

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

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

答案 4 :(得分:0)

我遇到了同样的问题,最好的方法是使用paypal示例代码......然后完美运行:https://www.x.com/developers/PayPal/documentation-tools/code-sample/216623

答案 5 :(得分:0)

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

$res = fgets ($fp, 1024);

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