2011-06-08 79 views
4

也许愚蠢的问题..PHP贝宝API和沙盒问题

我如何知道我的PayPal API集成是否正常工作?

我的意思是代码转到PayPal罚款,PayPal付款似乎工作正常,然后用户在付款后在我的网站上的正确页面重定向。

所以我假设它工作正常。

但是没有价格显示在PayPal表单上。

没有找到我的测试帐户收费

我的其他测试帐户(卖方)没有进帐

我假设它的作品只是因为用户被重定向到成功页面在我的网站!

但我怎么知道它真的在工作?!

没有什么让我完全确定它的作品!

请指教..

我现在用的是快速结账API

我justing收取客户的单个项目,没有贝宝授权等。只是一个简单的PayPal出售。

谢谢

<?php 

require_once ("paypalfunctions.php"); 
// ================================== 
// PayPal Express Checkout Module 
// ================================== 

//'------------------------------------ 
//' The paymentAmount is the total value of 
//' the shopping cart, that was set 
//' earlier in a session variable 
//' by the shopping cart page 
//'------------------------------------ 
$creditsAmount = $_GET["creditsAmount"]; 
if ($creditsAmount <= 4) { 
$price = 10; 
}elseif($creditsAmount <= 19 && $creditsAmount >= 5) { 
$price = 7.5; 
}else{ 
$price = 5; 
} 
$paymentAmount = $price * $creditsAmount; 
$SubmID = $_GET["SubmID"]; 
$memberID = (int)$_COOKIE["memberID"]; 
//'------------------------------------ 
//' The currencyCodeType and paymentType 
//' are set to the selections made on the Integration Assistant 
//'------------------------------------ 
$currencyCodeType = "USD"; 
$paymentType = "Sale"; 

//'------------------------------------ 
//' The returnURL is the location where buyers return to when a 
//' payment has been succesfully authorized. 
//' 
//' This is set to the value entered on the Integration Assistant 
//'------------------------------------ 
$returnURL = "http://domain.co.uk/modules/yobilab/copyright/PAYPAL_process.php?creditsAmount=".$creditsAmount; // AGGIUNGERE ID SUBMISSION 
//$returnURL = "http://domain.co.uk/modules/yobilab/copyright/PAYPAL_process.php"; // AGGIUNGERE ID SUBMISSION 
//'------------------------------------ 
//' The cancelURL is the location buyers are sent to when they hit the 
//' cancel button during authorization of payment during the PayPal flow 
//' 
//' This is set to the value entered on the Integration Assistant 
//'------------------------------------ 
$cancelURL = "http://domain.co.uk/m/copyright/overview/".$SubmID; // AGGIUNGERE ID SUBMISSION 
//$cancelURL = "http://domain.co.uk/m/copyright/error/"; // AGGIUNGERE ID SUBMISSION 

//'------------------------------------ 
//' Calls the SetExpressCheckout API call 
//' 
//' The CallShortcutExpressCheckout function is defined in the file PayPalFunctions.php, 
//' it is included at the top of this file. 
//'------------------------------------------------- 
$resArray = CallShortcutExpressCheckout ($paymentAmount, $currencyCodeType, $paymentType, $returnURL, $cancelURL); 
$ack = strtoupper($resArray["ACK"]); 
if($ack=="SUCCESS" || $ack=="SUCCESSWITHWARNING") 
{ 
    RedirectToPayPal ($resArray["TOKEN"]); 
} 
else 
{ 
    //Display a user friendly Error on the page using any of the following error information returned by PayPal 
    $ErrorCode = urldecode($resArray["L_ERRORCODE0"]); 
    $ErrorShortMsg = urldecode($resArray["L_SHORTMESSAGE0"]); 
    $ErrorLongMsg = urldecode($resArray["L_LONGMESSAGE0"]); 
    $ErrorSeverityCode = urldecode($resArray["L_SEVERITYCODE0"]); 

    echo "SetExpressCheckout API call failed. "; 
    echo "Detailed Error Message: " . $ErrorLongMsg; 
    echo "Short Error Message: " . $ErrorShortMsg; 
    echo "Error Code: " . $ErrorCode; 
    echo "Error Severity Code: " . $ErrorSeverityCode; 
} 
?> 
+0

您是否错过了确认它的某些部分?你可以放置你的代码吗? – Arend 2011-06-08 21:12:46

+0

我刚刚发布我的代码。 – 2011-06-08 21:17:32

回答

1

须知Paypal IPN(即时付款通知)的测试良好的代码示例通过你的HTML发送URL从,然后该网页把这段代码,你会得到电子邮件响应上

<?php 
error_reporting(E_ALL^E_NOTICE); 
$email = $_GET['ipn_email']; 
$header = ""; 
$emailtext = ""; 
// Read the post from PayPal and add 'cmd' 
$req = 'cmd=_notify-validate'; 
if(function_exists('get_magic_quotes_gpc')) 
{ 
    $get_magic_quotes_exits = true; 
} 
foreach ($_POST as $key => $value) 
// Handle escape characters, which depends on setting of magic quotes 
{ 
    if($get_magic_quotes_exists == true && get_magic_quotes_gpc() == 1){ 
     $value = urlencode(stripslashes($value)); 
    } else { 
     $value = urlencode($value); 
    } 
    $req .= "&$key=$value"; 
} 
// Post back to PayPal 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 ('ssl://www.paypal.com', 443, $errno, $errstr, 30); 


// Process validation from PayPal 
// TODO: This sample does not test the HTTP response code. All 
// HTTP response codes must be handles or you should use an HTTP 
// library, such as cUrl 

if (!$fp) { // HTTP ERROR 
} else { 
// NO HTTP ERROR 
fputs ($fp, $header . $req); 
while (!feof($fp)) { 
    $res = fgets ($fp, 1024); 
    if (strcmp ($res, "VERIFIED") == 0) { 
     // TODO: 
     // 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 
     // If 'VERIFIED', send an email of IPN variables and values to the 
     // specified email address 
     foreach ($_POST as $key => $value){ 
     $emailtext .= $key . " = " .$value ."\n\n"; 
     } 
     mail($email, "Live-VERIFIED IPN", $emailtext . "\n\n" . $req); 
    } else if (strcmp ($res, "INVALID") == 0) { 
     // If 'INVALID', send an email. TODO: Log for manual investigation. 
     foreach ($_POST as $key => $value){ 
     $emailtext .= $key . " = " .$value ."\n\n"; 
     } 
     mail($email, "Live-INVALID IPN", $emailtext . "\n\n" . $req); 
    }  
} 
fclose ($fp); 
?> 
1

贝宝的IPN(即时付款通知)测试在他们的开发者网站的工具 - 你可以用它在交易完成后进行回调。那么你可以写一个php脚本来检查付款状态,确认它是成功的,然后做你想做的任何事情...

检查开发人员的沙箱中的文档,看看它是如何工作的,他们给一些与...

+0

为什么这些收入不是简单地显示在测试帐户中? – 2011-06-08 21:17:57

+0

也为什么没有价格显示在贝宝形式..这使我很困惑 – 2011-06-08 21:20:15

+0

也许仔细检查你的代码,以确保你有适合沙箱环境的API密钥和证书,而不是你的Live API密钥?这在过去造成了我的一些悲伤... – Dan 2011-06-08 21:22:14

1

你可以使用IPN来模拟结帐请求,但它只会将您的请求发送给您的URL,以便您可以测试您的应用程序。如果你想测试你是否正在收取适量的金钱或类似的东西,你必须改变你用来购买东西的形式。它不应指向paypal.com,而应该指向沙盒网址https://www.sandbox.paypal.com/cgi-bin/webscr

它会觉得你真的在买东西,但你不是,因为你会使用测试账户。购买完成后,您可以前往沙盒,使用测试账户登录,查看一个人如何拥有更少的钱(买方),另一个拥有更多的钱(卖方)。