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
_
CurlなどのHTTPライブラリを使用するのではなく、自分でソケットを開くため、適切なHTTPプロトコルバージョンを設定し、 HTTPホストヘッダー を追加する必要があります。 -)POST行のすぐ下。
$header = "POST /cgi-bin/webscr HTTP/1.1\r\n";
$header .= "Host: www.sandbox.Paypal.com\r\n";
私は同じ問題を抱えていました、そしてこれらは必要な変更です。上記の回答のいくつかは、すべての問題を解決するわけではありません。
ヘッダーの新しい形式:
$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
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";
Fsockopenを使用したPayPalのサンプルコードが正しく機能しないことがわかりました。
IPNをPHPで動作させるために、8月5日からのAireffの提案を使用し、x.comサイトでcurlテクニックを使用してコードを調べました。
別の解決策は、比較する前に$ resをトリミングすることです。
$res = fgets ($fp, 1024);
$res = trim($res); //NEW & IMPORTANT
私は同じ問題を抱えていました、そして最も良いことはPaypalサンプルコードを使うことです...それはそれから完全に働きます: https://www.x.com/developers/Paypal/documentation-tools/code-sample/ 21662