php – 无法从paypal IPN沙箱获得响应
作者:互联网
几天前突然停止接收来自paypal的IPN消息.
我写了下面的代码
$url_parsed=parse_url('https://www.sandbox.paypal.com/cgi-bin/webscr');
$post_string = '';
foreach ($_POST as $field=>$value) {
$post_string .= $field.'='.urlencode(stripslashes($value)).'&';
}
$post_string.="cmd=_notify-validate";
$fp = fsockopen($url_parsed['host'],"80",$err_num,$err_str,30);
$myFile = "testpaypal.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = $post_string;
fwrite($fh, $stringData);
fwrite($fh, "------------");
if(!$fp){
return false;
} else {
fputs($fp, "POST $url_parsed[path] HTTP/1.0\r\n");
fputs($fp, "Host: $url_parsed[host]\r\n");
fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
fputs($fp, "Content-length: ".strlen($post_string)."\r\n");
fputs($fp, "Connection: close\r\n\r\n");
fputs($fp, $post_string . "\r\n\r\n");
while(!feof($fp))
{
$ipn_response .= fgets($fp, 1024);
}
fclose($fp);
if (eregi("VERIFIED",$ipn_response)) {
fwrite($fh, "VERIFIED");
return true;
} else {
fwrite($fh, "UNVERIFIED");
return false;
}
}
fclose($fh);
此代码将err_num返回到“0”以及在“fclose($fp);”之后打印$ipn_response时行打印“HTTP / 1.0 302找到位置:https://www.sandbox.paypal.com服务器:BigIP连接:关闭内容长度:0”
但无法在$ipn_respnse中获得“验证”.
我已经尝试了所有可能的方法,例如使用“ssl://sandbox.paypal.com”更改解析网址
以及网上建议的所有其他解决方案.
自从过去三天以来,我一直陷入这个问题.所以,请帮帮我.
提前致谢.
解决方法:
我曾经一度努力解决这个问题.它完全让我疯了!问题是Hetzner(托管位置)因某种原因阻止了PayPal IP.在这种情况下,当您查看PayPal帐户中的IPN网络时,您会看到IPN已从某个日期停止发送通知.
标签:paypal-ipn,php,paypal 来源: https://codeday.me/bug/20190901/1781795.html