我使用了来自 paypal 的完全相同的代码,并尝试从 Payapl Sandbox 的 IPN 模拟器获得响应。我已经在我的网站上设置了 ipn.php 文件,我将在其中获得 IPN 响应,它具有以下代码。正如我在下面的代码中所述,我仍然没有收到任何已验证或无效状态的邮件。所以请让我知道我的代码中缺少什么或有什么问题,以便我更正它。
<?php
$raw_post_data = file_get_contents('php://input');
$raw_post_array = explode('&', $raw_post_data);
$myPost = array();
foreach ($raw_post_array as $keyval) {
$keyval = explode ('=', $keyval);
if (count($keyval) == 2)
$myPost[$keyval[0]] = urldecode($keyval[1]);
}
$req = 'cmd=_notify-validate';
if(function_exists('get_magic_quotes_gpc')) {
$get_magic_quotes_exists = true;
}
foreach ($myPost as $key => $value) {
if($get_magic_quotes_exists == true && get_magic_quotes_gpc() == 1) {
$value = urlencode(stripslashes($value));
} else {
$value = urlencode($value);
}
$req .= "&$key=$value";
}
$ch = curl_init('https://www.sandbox.paypal.com/cgi-bin/webscr');
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $req);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_FORBID_REUSE, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Connection: Close'));
if( !($res = curl_exec($ch)) ) {
// error_log("Got " . curl_error($ch) . " when processing IPN data");
curl_close($ch);
exit;
}
curl_close($ch);
if (strcmp ($res, "VERIFIED") == 0) {
$item_name = $_POST['item_name'];
$item_number = $_POST['item_number'];
$payment_status = $_POST['payment_status'];
$payment_amount = $_POST['mc_gross'];
$payment_currency = $_POST['mc_currency'];
$txn_id = $_POST['txn_id'];
$receiver_email = $_POST['receiver_email'];
$payer_email = $_POST['payer_email'];
mail('mymailid@yahoo.com', 'PayPal IPN', 'Working...');
}
else if (strcmp ($res, "INVALID") == 0)
{
// log for manual investigation
mail('kra_14_05@yahoo.co.in', 'PayPal IPN', 'NOT Working...');
}
?>
我曾尝试在贝宝沙盒中使用测试商家和买家帐户进行测试。我可以在测试商家帐户下查看 IPN 历史记录。在那里我可以看到 HTTP 响应代码 = 200,所以我猜我的 ipn 脚本是被 Paypal 访问的。0.25 美元的金额从买家账户中扣除并存入商家账户,所以我想这部分也可以正常工作。
现在我已经在单个变量中传递了 2 个值,例如。
<input type="hidden" name="custom" value="mem001::mempass001">
然后我试图在我的 ipn.php(ipn 脚本在此页面上)页面上接收“自定义”变量的值。使用 php 函数,我将两个值分开并存储在不同的变量中。
出于测试目的,我试图将上述值存储在数据库中,但值没有存储到数据库中。
那么,到目前为止,我到底做错了什么?在所有上述过程之后,我如何确保我真的从 IPN 获得“已验证”状态?请帮忙。