Php 贝宝 IPN returns 无效
Php PayPal IPN returns INVALID
我知道自 2018 年 5 月 15 日起,PayPal IPN 系统发生了一些变化。我恰好正在实施我的第一个 IPN 侦听器; 我不确定我迷路是因为我的资源(包括 SO 帖子,一些可以追溯到 2009 年的关于这个主题的帖子)已经被 PayPal 的变化所淘汰,或者仅仅因为我在这个领域没有经验.
我怀疑我指向了错误的 PayPal 地址:
$fh = fsockopen('ssl://www.paypal.com',443,$errno,$errstr,30);
//$fh = fsockopen('https://www.sandbox.paypal.com',80,$errno,$errstr,30);
//$fh = fsockopen('https://ipnpb.sandbox.paypal.com/cgi-bin/webscr',80,$errno,$errstr,30);
第一个地址在与 PayPal 成功握手时完成,但 returns IPN 响应无效。第二次握手,但是没有通过if (!$fh)
测试
我已经尝试了下面的代码,以及在 Chris Muench 的回答中找到的 CURL 代码:
<?php
// Paypal IPN code
header('HTTP/1.1 200 OK'); // send header
$resp = 'cmd=_notify-validate';
foreach ($_POST as $parm => $var){
$var = urlencode(stripslashes($var));
$resp .= "&$parm=$var";
}
$httphead = "POST /cgi-bin/webscr HTTP/1.1\r\n";
$httphead .= "Content-Type: application/x-www-form-urlencoded\r\n";
$httphead .= "Content-Length: " . strlen($resp) . "\r\n\r\n";
// create a ="file handle" for writing to a URL to paypal.com on Port 443 (the IPN port)
$errno ='';
$errstr='';
$fh = fsockopen('ssl://www.paypal.com',443,$errno,$errstr,30);
//$fh = fsockopen('https://www.sandbox.paypal.com',443,$errno,$errstr,30);
//$fh = fsockopen('https://ipnpb.sandbox.paypal.com/cgi-bin/webscr',443,$errno,$errstr,30);
if (!$fh) {
// if-fh does not work - cnxn FAILED
}
else{
// Connection opened, so spit back the response and get PayPal's view whether it was an authentic notification
fputs ($fh,$httphead.$resp);
while (!feof($fh)){
$readresp = fgets ($fh, 1024);
if (strcmp(trim($readresp),"VERIFIED") == 0){
// if-fh works - cnxn OPEN';
// WE ALL WIN!!
}
else if(strcmp(trim($readresp),"INVALID") == 0){
// A possible hacking attempt, or
// In my case, a possible hacking false-positive
}
}
fclose ($fh);
}
?>
我正在我的沙盒帐户中使用 IPN 模拟器进行测试。
None SO 推荐的解决方案有效。
请帮忙!
郑重声明,url 似乎工作正常:https://www.paypal.com/cgi-bin/webscr
我知道自 2018 年 5 月 15 日起,PayPal IPN 系统发生了一些变化。我恰好正在实施我的第一个 IPN 侦听器; 我不确定我迷路是因为我的资源(包括 SO 帖子,一些可以追溯到 2009 年的关于这个主题的帖子)已经被 PayPal 的变化所淘汰,或者仅仅因为我在这个领域没有经验.
我怀疑我指向了错误的 PayPal 地址:
$fh = fsockopen('ssl://www.paypal.com',443,$errno,$errstr,30);
//$fh = fsockopen('https://www.sandbox.paypal.com',80,$errno,$errstr,30);
//$fh = fsockopen('https://ipnpb.sandbox.paypal.com/cgi-bin/webscr',80,$errno,$errstr,30);
第一个地址在与 PayPal 成功握手时完成,但 returns IPN 响应无效。第二次握手,但是没有通过if (!$fh)
测试
我已经尝试了下面的代码,以及在 Chris Muench 的回答中找到的 CURL 代码:
<?php
// Paypal IPN code
header('HTTP/1.1 200 OK'); // send header
$resp = 'cmd=_notify-validate';
foreach ($_POST as $parm => $var){
$var = urlencode(stripslashes($var));
$resp .= "&$parm=$var";
}
$httphead = "POST /cgi-bin/webscr HTTP/1.1\r\n";
$httphead .= "Content-Type: application/x-www-form-urlencoded\r\n";
$httphead .= "Content-Length: " . strlen($resp) . "\r\n\r\n";
// create a ="file handle" for writing to a URL to paypal.com on Port 443 (the IPN port)
$errno ='';
$errstr='';
$fh = fsockopen('ssl://www.paypal.com',443,$errno,$errstr,30);
//$fh = fsockopen('https://www.sandbox.paypal.com',443,$errno,$errstr,30);
//$fh = fsockopen('https://ipnpb.sandbox.paypal.com/cgi-bin/webscr',443,$errno,$errstr,30);
if (!$fh) {
// if-fh does not work - cnxn FAILED
}
else{
// Connection opened, so spit back the response and get PayPal's view whether it was an authentic notification
fputs ($fh,$httphead.$resp);
while (!feof($fh)){
$readresp = fgets ($fh, 1024);
if (strcmp(trim($readresp),"VERIFIED") == 0){
// if-fh works - cnxn OPEN';
// WE ALL WIN!!
}
else if(strcmp(trim($readresp),"INVALID") == 0){
// A possible hacking attempt, or
// In my case, a possible hacking false-positive
}
}
fclose ($fh);
}
?>
我正在我的沙盒帐户中使用 IPN 模拟器进行测试。
None SO 推荐的解决方案有效。
请帮忙!
郑重声明,url 似乎工作正常:https://www.paypal.com/cgi-bin/webscr