作为一个评论在下面的答复中提到,我尝试下面这个教程 。 所以现在我有以下几点:
该ipn.php文件:
<?php
$ipn_post_data = $_POST;
$url = 'https://www.sandbox.paypal.com/cgi-bin/webscr';
// Set up request to PayPal
$request = curl_init();
curl_setopt_array($request, array
(
CURLOPT_URL => $url,
CURLOPT_POST => TRUE,
CURLOPT_POSTFIELDS => http_build_query(array('cmd' => '_notify-validate') + $ipn_post_data),
CURLOPT_RETURNTRANSFER => TRUE,
CURLOPT_HEADER => FALSE,
CURLOPT_SSL_VERIFYPEER => TRUE,
CURLOPT_CAINFO => 'cacert.pem',
));
// Execute request and get response and status code
$response = curl_exec($request);
$status = curl_getinfo($request, CURLINFO_HTTP_CODE);
// Close connection
curl_close($request);
if($status == 200 && $response == 'VERIFIED')
{
$subject = "valid";
$message = "good";
}
else
{
$subject = "invalid";
$message = "bad";
}
$to = "oshirowanen@mail.com";
$from = "me@desktop.com";
$header = 'MIME-Version: 1.0' . "\r\n";
$header .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$header .= 'To: Oshirowanen <oshirowanen@mail.com>' . "\r\n";
$header .= 'From: Me <me@desktop.com>' . "\r\n";
mail($to,$subject,$message,$header);
?>
接收到的电子邮件:
Subject "invalid"
Message "bad"
Answer 1:
编辑:
现在,我可以看到你所输出的阵列,试图取代这一摆脱PHP数组的错误:
foreach ($_POST as $key => $value) {
if (!is_array($value)) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}
else if (is_array($value)) {
$paymentArray = explode(' ', $value[0]);
$paymentCurrency = urlencode(stripslashes($paymentArray[0]));
$paymentGross = urlencode(stripslashes($paymentArray[1]));
$req .= '&mc_currency=' . $paymentCurrency . '&mc_gross=' . $paymentGross;
}
}
这里是充满了编辑的代码:
// read the post from PayPal system and add 'cmd'
$req = 'cmd=' . urlencode('_notify-validate');
foreach ($_POST as $key => $value) {
if (!is_array($value)) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}
else if (is_array($value)) {
$paymentArray = explode(' ', $value[0]);
$paymentCurrency = urlencode(stripslashes($paymentArray[0]);
$paymentGross = urlencode(stripslashes($paymentArray[1]);
$req .= '&mc_currency=' . $paymentCurrency . '&mc_gross=' . $paymentGross;
}
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.paypal.com/cgi-bin/webscr');
curl_setopt($ch, CURLOPT_HEADER, 0);
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_HTTPHEADER, array('Host: www.paypal.com'));
$res = curl_exec($ch);
curl_close($ch);
// assign posted variables to local variables
$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'];
if (strcmp ($res, "VERIFIED") == 0) {
// check the payment_status is Completed
// check that txn_id has not been previously processed
// check that receiver_email is your Primary PayPal email
// check that payment_amount/payment_currency are correct
// process payment
}
else if (strcmp ($res, "INVALID") == 0) {
// log for manual investigation
}
检查了这一点 !
编辑:检查出的PayPal故障排除提示:
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_admin_IPNTesting
Answer 2:
问题是,你不检查HTTP响应代码,所以你intepreting“无效的主机头”为宝的响应,而它的web服务器响应(对于状态代码400)。
如果你看一下贝宝的文档 ,还有这是非常相似的代码,因为它使用了“的fsockopen”,“的fputs”和“与fgets”功能与PayPal的服务器进行通信的PHP的例子。
但是,如果你在“的fsockopen”调用后此话仔细看,你可以看到:
// Process validation from PayPal
// TODO: This sample does not test the HTTP response code. All
// HTTP response codes must be handled or you should use an HTTP
// library, such as cUrl
这是exacty您的问题:你不检查HTTP响应代码为200(OK),解析响应主体之前。
此外,使用“用strtolower”功能是不正确的,因为从贝服务器的实际响应总是大写,如图在上述引用的例子。
即使PayPal的示例使用“的fsockopen”的做法,我觉得应该是更好的使用PHP卷曲库来实现您的IPN侦听器。
也有看看下面的回答:
- PHP卷曲贝宝沙箱
- 卷曲或呈的fsockopen贝宝IPN
但是,如果你真的想使用“的fsockopen”功能,你应该总是指定的“主机”头字段中的POST请求,如图的代码(取自下面的代码片段PHP手册 ):
<?php
$fp = fsockopen("www.example.com", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "GET / HTTP/1.1\r\n";
$out .= "Host: www.example.com\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
while (!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}
?>
UPDATE
下面是递归的stripslashes / URL编码一个简单的函数:
<html>
<body>
<pre>
<?
$post = Array (
"transaction" => Array("USD 20.00"),
"payment_request_date" => "Sun Aug '05 08:49:20 PDT 2012",
"return_url" => "http://000.000.000.000/success.php"
);
echo "before myUrlencode...\n";
print_r($post);
function myUrlencode($post) {
foreach ($post as $key => $val) {
if (is_array($val)) {
$post[$key] = myUrlencode($val);
} else {
$post[$key] = urlencode(stripslashes($val));
}
}
return($post);
}
echo "\nafter myUrlencode...\n";
print_r(myUrlencode($post));
?>
</pre>
</body>
</html>
Answer 3:
得到它的工作使用基本示例代码 4b中,
清除$ipnNotificationUrl = "";
从基本的示例代码如我在我自己加入曾有一个值,
创建的,而不是在沙箱中的业务亲帐户卖家帐户,
将卖家账户启用IPN的URL,
用下面的PHP 5.2 的代码示例的IPN监听器
添加的2行到侦听器,如描述在这里 ,该2行可以如下所示:
下载cacert.pem
从证书到我的服务器这里 ,并把它放在同一目录IPN监听器:
在点6中提到的2行:
CURLOPT_SSL_VERIFYPEER => TRUE,
CURLOPT_CAINFO => 'cacert.pem',
我不知道为什么沙盘业务亲帐户没有让我设置的IPN的网址,但卖家账户呢。
Answer 4:
这些链接可能会解决您的问题,
贝宝:无效的IPN问题
http://www.webmasterworld.com/ecommerce/4292847.htm
贝宝沙箱IPN返回无效
Answer 5:
我不知道究竟是什么错,现在你的代码,但我同样在不久前strugling wuth和我的修复是在头和主机添加主机必须www.paypal.com。 我用的fsockopen方法,现在工作得很好。
在卷曲我使用SSL之前出现了问题。 而解决办法是把这些线路:
curl_setopt($curl, CURLOPT_COOKIEJAR, dirname(__FILE__) . "/cookies.txt");
curl_setopt($curl, CURLOPT_COOKIEFILE, dirname(__FILE__) . "/cookies.txt");
当然文件cookie.txt的哪里都存在。 多了,我不得不运行一个连接到页面以获取会话数据和稍后发送POST数据。
下面是一个头什么是工作正常,我用的fsockopen方法
$header = "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Host: www.paypal.com\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
Answer 6:
这是一个+字符的一个问题,它常常会错误地取出,所以我所做的解决方法,它为我工作。
payment_data =星期六2016年6月4日15点11分16秒GMT + 0200(CEST)
foreach ($_POST as $key => $value) {
if($key !== "payment_date"){
$req .= '&' . $key . '=' . rawurlencode(html_entity_decode($value, ENT_QUOTES, 'UTF-8'));
}else{
$req .= '&' . $key . '=' . rawurlencode(str_replace(array('GMT '),array('GMT+'),$value));
}}
Answer 7:
以下是如何避免这些错误?
foreach ($_POST as $key => $value) {
if ($key=='transaction')
foreach ($value as $key2=>$value2) {
$value['transaction'][$key2] = urlencode(stripslashes($value2));
}
else {
$value = urlencode(stripslashes($value));
}
$req .= "&$key=$value";
}
Answer 8:
的头发拉,直到我看到Izudin的答案小时。 他right..The +在日期没有被转移。 只是为了测试,我在模拟器上删除它从预填场,并得到了Verified
,在最后。
Answer 9:
我终于找到了一个更新(2016年8月5日)工作回答了这个查询。 您可以使用此代码作为您的最终IPN的沙箱或直播。 随着考虑下列因素:
- 请务必将您的IPN监听器 - >我的销售工具 - >即时付款通知部分。
- 不要在沙箱中使用IPN模拟器,它总是会返回无效。
- 创建和使用沙盒实际按钮,但不要把你的IPN监听到返回页面中说:“把客户到这个URL,当他们完成结账”。
这就是它的全部。 我希望这将有所帮助。
这里是工作的代码:
<?php
$post_data = file_get_contents('php://input');
$post_array = explode('&', $post_data);
$dataFromPayPal = array();
foreach ($post_array as $keyval) {
$keyval = explode ('=', $keyval);
if (count($keyval) == 2)
$dataFromPayPal[$keyval[0]] = urldecode($keyval[1]);
}
$req = 'cmd=_notify-validate';
if(function_exists('get_magic_quotes_gpc')) {
$get_magic_quotes_exists = true;
}
foreach ($dataFromPayPal 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');
//use https://www.sandbox.paypal.com/cgi-bin/webscr in case you are testing this on a PayPal Sanbox environment
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_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_FORBID_REUSE, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Connection: Close'));
if( !($res = curl_exec($ch)) ) {
curl_close($ch);
exit;
}
curl_close($ch);
if (strcmp ($res, "INVALID") == 0) {
echo "INVALID";
}
else if (strcmp ($res, "VERIFIED") == 0) {
echo "VALID";
}
?>
文章来源: Paypal SandBox IPN always returns INVALID