PayPal IPN PHP 握手错误
PayPal IPN PHP Handshake Error
好的,所以我最近开始尝试使用 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 文档并且这段代码似乎应该有效?可能出了什么问题?
也许尝试 运行 使用 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;
问题是你的要求returns400 Bad Request
.
这是因为请求不包含Host
header(请求被遇到的第一个\r\n
序列终止,Hostheader是仅通过 after this),这是 HTTP/1.1 所要求的,因此导致请求失败。
现在,把Host
header放在第一位:
$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 文档上的代码似乎是错误的。]
尝试登录后端。有时 PayPals IPN 听众说握手无效,即使它是。
好的,所以我最近开始尝试使用 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 文档并且这段代码似乎应该有效?可能出了什么问题?
也许尝试 运行 使用 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;
问题是你的要求returns400 Bad Request
.
这是因为请求不包含Host
header(请求被遇到的第一个\r\n
序列终止,Hostheader是仅通过 after this),这是 HTTP/1.1 所要求的,因此导致请求失败。
现在,把Host
header放在第一位:
$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 文档上的代码似乎是错误的。]
尝试登录后端。有时 PayPals IPN 听众说握手无效,即使它是。