經過了數小時的搞亂並試圖設置什麼應該是相對簡單的過程,將支付發送到www.sandbox.paypal.com,並通過交易重定向回我網站的頁面id在查詢字符串中,我終於實現了。貝寶PDT錯誤4003
我現在收到一條錯誤消息'FAIL Error 4003'。
這是我使用的代碼。這是幾乎一樣的貝寶的例子(所有我做的是呼應了迴應):
<?php
// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-synch';
$tx_token = $_GET['tx'];
$auth_token = "ZdoN6q4GLiRniR2BbOzEEF22GJOWHpVOXRtP7fAhBpvwwm5GyWcTzO_sSSO";
$req .= "&tx=$tx_token&at=$auth_token";
// post back to PayPal system to validate
$header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
$fp = fsockopen ('www.paypal.com', 80, $errno, $errstr, 30);
// If possible, securely post back to paypal using HTTPS
// Your PHP server will need to be SSL enabled
// $fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);
if (!$fp)
{
// HTTP ERROR
echo "HTTP Error";
}
else
{
fputs ($fp, $header . $req);
// read the body data
$res = '';
$headerdone = false;
while (!feof($fp))
{
$line = fgets ($fp, 1024);
if (strcmp($line, "\r\n") == 0) {
// read the header
$headerdone = true;
}
else if ($headerdone)
{
// header has been read. now read the contents
$res .= $line;
echo $line;
}
}
// parse the data
$lines = explode("\n", $res);
$keyarray = array();
if (strcmp ($lines[0], "SUCCESS") == 0)
{
for ($i=1; $i<count($lines);$i++)
{
list($key,$val) = explode("=", $lines[$i]);
$keyarray[urldecode($key)] = urldecode($val);
}
// 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
$firstname = $keyarray['first_name'];
$lastname = $keyarray['last_name'];
$itemname = $keyarray['item_name'];
$amount = $keyarray['payment_gross'];
echo ("<p><h3>Thank you for your purchase!</h3></p>");
echo ("<b>Payment Details</b><br>\n");
echo ("<li>Name: $firstname $lastname</li>\n");
echo ("<li>Item: $itemname</li>\n");
echo ("<li>Amount: $amount</li>\n");
echo ("");
}
else if (strcmp ($lines[0], "FAIL") == 0) {
echo "Failure: " . $lines[0];
// log for manual investigation
}
}
fclose ($fp);
?>
<br />
Thank you for your payment. Your transaction has been completed, and a receipt for your purchase has been emailed to you. You may log into your account at <a href="http://www.sandbox.paypal.com/ie">www.sandbox.paypal.com/ie</a> to view details of this transaction.
我已經確定,以確認我的兩個沙箱商家和買家帳戶的電子郵件地址並啓用PDT。
客戶端與下面的查詢字符串PARAMATERS重定向正確地回到我的「謝謝」網頁 - ?tx=4FU63684496248523&st=Pending&amt=29.90&cc=EUR&cm=&item_number=
有沒有其他人遇到這個問題?如果是這樣,通常的原因是什麼?
我居然要求有關錯誤貝寶,他們給了我一個神祕的答案,他說,錯誤來自一些錯誤配置在我的購物車(我正在使用ubercart)。根本沒有什麼幫助...... – Jukebox 2011-12-15 18:51:13
這是另一個常見問題:https://ppmts.custhelp.com/app/answers/detail/a_id/13 – Jukebox 2011-12-15 19:10:44