当我使用Sandbox时,PayPal payment_status总是待定

时间:2013-04-11 19:41:14

标签: php paypal paypal-sandbox paypal-ipn

我正在使用PayPal IPN功能,但在使用Sandbox进行测试时,我不断获得_POST[payment_status] = Pending。因此,我无法测试完整购买以确保整个过程正常运行。

这是我的代码:

// Set the request paramaeter
$req = 'cmd=_notify-validate';

// Run through the posted array
foreach ($_POST as $key => $value)
{
    // If magic quotes is enabled strip slashes
    if (get_magic_quotes_gpc())
    {
        $_POST[$key] = stripslashes($value);
        $value = stripslashes($value);
    }
    $value = urlencode($value);
    // Add the value to the request parameter
    $req .= "&$key=$value";
}

$ch = curl_init();    // Starts the curl handler
curl_setopt($ch, CURLOPT_URL,$paypal[$testing]); // Sets the paypal address for curl
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // Returns result to a variable instead of echoing
curl_setopt($ch, CURLOPT_TIMEOUT, 3); // Sets a time limit for curl in seconds (do not set too low)
curl_setopt($ch, CURLOPT_POST, 1); // Set curl to send data using post
curl_setopt($ch, CURLOPT_POSTFIELDS, $req); // Add the request parameters to the post
$result = curl_exec($ch); // run the curl process (and return the result to $result
curl_close($ch);

if (strcmp ($result, "VERIFIED") == 0) // It may seem strange but this function returns 0 if the result matches the string So you MUST check it is 0 and not just do strcmp ($result, "VERIFIED") (the if will fail as it will equate the result as false)
{
// It worked
// do my stuff
}else{

    foreach($_POST as $key=>$value){
        $post_str .="_POST[$key] = $value<br>";
    }

    $sub = "Paypal error";
    $mes = "$post_str";
    mailer($sub, $mes, $from, $to);

}

这是我在电子邮件中收到的错误消息:

_POST[mc_gross] = 120.00
_POST[protection_eligibility] = Ineligible
_POST[address_status] = confirmed
_POST[payer_id] = QDZDYY4JWGFVG
_POST[tax] = 0.00
_POST[address_street] = 1 Maire-Victorin
_POST[payment_date] = 12:25:03 Apr 11, 2013 PDT
_POST[payment_status] = Pending
_POST[charset] = windows-1252
_POST[address_zip] = M5A 1E1
_POST[first_name] = gppl
_POST[address_country_code] = CA
_POST[address_name] = gppl Simard's Test Store
_POST[notify_version] = 3.7
_POST[custom] = 
_POST[payer_status] = verified
_POST[address_country] = Canada
_POST[address_city] = Toronto
_POST[quantity] = 1
_POST[verify_sign] = An5ns1Kso7MWUdW4ErQKJJJ4qi4-AjAXF3KMNcb6G83Jslw18dw.Ti32
_POST[payer_email] = 78h23d8712h3d@x.com
_POST[txn_id] = 2KU491796R824634N
_POST[payment_type] = instant
_POST[payer_business_name] = gppl x's Test Store
_POST[last_name] = Simard
_POST[address_state] = Ontario
_POST[receiver_email] = x@x.x
_POST[pending_reason] = unilateral
_POST[txn_type] = web_accept
_POST[item_name] = 926537
_POST[mc_currency] = CAD
_POST[item_number] = 
_POST[residence_country] = CA
_POST[test_ipn] = 1
_POST[handling_amount] = 0.00
_POST[transaction_subject] = 926537
_POST[payment_gross] = 
_POST[shipping] = 0.00
_POST[ipn_track_id] = c7dcef0b1c333

这个错误确实让我疯狂。 大家好,我已经将付款审核设置为off

4 个答案:

答案 0 :(得分:6)

如果您使用的是沙箱,请打开developer.paypal.com-&gt; Dashboard-&gt; Accounts-&gt; facilitator@yourhost.com-> Profile-&gt;设置。将“付款审核”设置为“关闭”

答案 1 :(得分:1)

确保您的帐户有确认的电子邮件地址。当您向没有确认电子邮件地址的帐户发送付款时,通常会发生这种情况。因此,请检查卖家帐户,并确保已确认您已将付款发送至的电子邮件地址。

答案 2 :(得分:1)

我遇到了这个问题 - 我将PayPal发送给我的“live”payer_email,当我将其更改为其工作的沙箱中的商业电子邮件时。与我的****实时电子邮件相同 - facilitator@yoursite.com

答案 3 :(得分:0)

使用该商家登录您的Sandbox帐户,看看您是否有任何“无人认领”付款。这可能是因为它们与您的主帐户的货币不同。