【发布时间】:2014-01-13 21:54:38
【问题描述】:
我正在努力将我的网站与贝宝集成,并使其在沙盒模式下运行。我在 Codeigniter (PHP) 工作。我已经让 IPN 通知正常工作,但似乎无法弄清楚我在 PDT 上哪里出了问题(需要这个来显示正确的确认页面并返回)。我已经多次检查身份令牌,确保 htaccess 文件不会限制回调访问,确保电子邮件已针对业务领域进行验证,确保所有内容都进入沙盒而不是实时站点,并制作确保使用正确的参数启用自动返回,甚至询问技术支持(没有得到任何有用的帮助)。但我不断收到“FAIL”的返回 ($response),错误代码为 4002。任何有关如何调试此问题的帮助将不胜感激。
这是我的表格:
<form class="paypal login" action="http://########.com/paypal/purchase" method="post" id="paypal_form">
<fieldset id="inputs">
<input type="hidden" name="first_name" value="">
<input type="hidden" name="last_name" value="">
<input type="hidden" name="email" value="">
<input type="hidden" name="quantity" value="">
<input type="hidden" name="order_tc_id" value="###########">
</fieldset>
<fieldset id="actions">
<input type="submit" id="paypal-btn" class="paypal-order" alt="Order" value="Purchase"/>
</fieldset>
</form>
这里是它的去处:
$querystring = '?';
$querystring .= "business=".urlencode("paypal@#######.net")."&";
$querystring .= "cmd=".urlencode("_xclick")."&";
$querystring .= "amount=".urlencode(krw_usd($items_no_tax_price))."&";
$querystring .= "rm=".urlencode(2)."&";
$querystring .= "quantity=".urlencode($quant)."&";
$querystring .= "first_name=".urlencode($first_name)."&";
$querystring .= "last_name=".urlencode($last_name)."&";
$querystring .= "email=".urlencode($email)."&";
$querystring .= "currency_code=".urlencode("USD")."&";
$querystring .= "return=".urlencode(stripslashes($return_url))."&";
$querystring .= "cancel_return=".urlencode(stripslashes($cancel_url))."&";
$querystring .= "notify_url=".urlencode(stripslashes($notify_url));
header('location:https://www.sandbox.paypal.com/cgi-bin/webscr'.$querystring);
这里是返回网址:
$request = curl_init();
curl_setopt_array($request, array
(
CURLOPT_URL => 'https://www.sandbox.paypal.com/cgi-bin/webscr',
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => http_build_query(array
(
'cmd' => '_notify-synch',
'tx' => $tx,
'at' => '#############################',
)),
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_HEADER => 0,
));
$response = curl_exec($request);
$status = curl_getinfo($request, CURLINFO_HTTP_CODE);
curl_close($request);
$response = substr($response, 7);
$response = urldecode($response);
preg_match_all('/^([^=\s]++)=(.*+)/m', $response, $m, PREG_PATTERN_ORDER);
$response = array_combine($m[1], $m[2]);
if(isset($response['charset']) AND strtoupper($response['charset']) !== 'UTF-8')
{
foreach($response as $key => &$value)
{
$value = mb_convert_encoding($value, 'UTF-8', $response['charset']);
}
$response['charset_original'] = $response['charset'];
$response['charset'] = 'UTF-8';
}
ksort($response);
foreach($response as $k=>$v)
{
echo "Key: " . $k . ", Value: " . $v;
echo "<br>";
}
【问题讨论】:
-
返回url好像有问题,paypal付款后无法返回,给你4002(内部错误)。请确保您可以到达您指定的返回网址
-
感谢您的回答,但我认为返回 url 绝对可以访问,因为重定向完美地到达那里。并且 IPN 通知可以毫无问题地到达其具有相同设置的类似路由的页面。
标签: php codeigniter paypal eclipse-pdt