paypal ipn没有得到验证
Posted
技术标签:
【中文标题】paypal ipn没有得到验证【英文标题】:paypal ipn not getting verified 【发布时间】:2012-05-18 07:45:28 【问题描述】:我正在使用以下代码作为 paypal ipn:
<?php
mysql_connect("localhost", "user", "password") or die(mysql_error());
mysql_select_db("PayPal") or die(mysql_error());
// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-validate';
foreach ($_POST as $key => $value)
$value = urlencode(stripslashes($value));
$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.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)
// PAYMENT VALIDATED & VERIFIED!
else if (strcmp ($res, "INVALID") == 0)
// PAYMENT INVALID & INVESTIGATE MANUALY!
fclose ($fp);
?>
在以各种方式进行测试之后,我可以让一切正常工作,除非:
if (strcmp ($res, "VERIFIED") == 0)
没用
if (strcmp ($res, "VERIFIED") == 1)
作品
显然它没有得到验证,因为我正在从沙盒发送 IPN。
可能缺少什么?
【问题讨论】:
如果您处于沙盒模式,则在fsockopen
的主机名参数中使用ssl://www.sandbox.paypal.com
而不是ssl://www.paypal.com
。
【参考方案1】:
既然你们都说strcmp($res, "VERIFIED") == 1
是真的,$res 比字符串 VERIFIED 大 1 个字符。我的猜测是 $res 最后有一个 \n 字符或其他需要剥离的字符。在使用 strcmp 调用这些行之前,请尝试执行类似 str_replace('\n', '', $res)
的操作。虽然只是大声思考。如果这不起作用,请告诉我。
仅供参考,PayPal 有在线示例代码,用于使用 cURL 在 PHP 中验证 IPN。 链接:http://www.x.com/developers/paypal/documentation-tools/paypal-code-samples#instantpaymentnotification
【讨论】:
以上是关于paypal ipn没有得到验证的主要内容,如果未能解决你的问题,请参考以下文章