Paypal SHA-256 变化,对我的 IPN 有什么影响?
Paypal SHA-256 changes, what impact for my IPN?
今天我收到一封来自 Paypal 的邮件,要求我更新我的 IPN:
同一个Link看如何进行
然而我的 IPN 是这样的:
<?php
$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 .= "Connection: close\r\n";
$header .= "Host: www.paypal.com:443\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 (trim($res), "VERIFIED") == 0) {
// process payment
}
else if (strcmp (trim($res), "INVALID") == 0) {
//some processes
}
}
fclose ($fp);
}
?>
我有什么要改变的吗?
PS:因为这个话题很成功,我想说我的 3 个 Paypal 账户都被封锁了,因为我的 activity 对他们来说是 "too risky".. . 我建议您尽可能多地向您的银行帐户付款,否则您可能会像我一样冻结 4000 美元,1 个月后他们只会取回 3000 美元。拧贝宝...
正如 PayPal 在 link 上所写,您的代码可能无需更改。
但您必须验证您的 Server/OS 支持 SHA-2 (SHA-256)。
您可以在这里找到其中一些的列表:SHA-2 compatibility
今天我收到一封来自 Paypal 的邮件,要求我更新我的 IPN: 同一个Link看如何进行
然而我的 IPN 是这样的:
<?php
$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 .= "Connection: close\r\n";
$header .= "Host: www.paypal.com:443\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 (trim($res), "VERIFIED") == 0) {
// process payment
}
else if (strcmp (trim($res), "INVALID") == 0) {
//some processes
}
}
fclose ($fp);
}
?>
我有什么要改变的吗?
PS:因为这个话题很成功,我想说我的 3 个 Paypal 账户都被封锁了,因为我的 activity 对他们来说是 "too risky".. . 我建议您尽可能多地向您的银行帐户付款,否则您可能会像我一样冻结 4000 美元,1 个月后他们只会取回 3000 美元。拧贝宝...
正如 PayPal 在 link 上所写,您的代码可能无需更改。
但您必须验证您的 Server/OS 支持 SHA-2 (SHA-256)。
您可以在这里找到其中一些的列表:SHA-2 compatibility