1

我正在使用该PayPal IPN功能,但是_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

4 回答 4

7

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

于 2014-10-17T15:55:41.450 回答
1

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

于 2013-04-11T20:10:53.733 回答
1

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

于 2014-06-13T07:33:54.977 回答
0

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

于 2014-03-28T08:46:34.357 回答