PHP PayPal API和Sandbox问题

4

也许是个愚蠢的问题..

我怎么知道我的PayPal API集成是否正常工作?

我的意思是,代码能够成功传递到PayPal,PayPal上的付款似乎也正常工作,然后用户在付款后被重定向到了我的网站上正确的页面。

所以我认为它工作得很好。

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

我的测试账户没有收费

我的其他测试账户(卖家)没有收入

我只是因为用户被重定向到了我的网站上的成功页面,才认为它工作正常!

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

没有任何东西能让我完全确定它正在工作!!

请给予建议..

我正在使用快速结帐API

我只是为单个项目向客户收费,没有PayPal授权等.. 只是一个简单的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;
}
?>

你确认时有没有漏掉什么部分?你能把你的代码放上来吗? - Arend
3个回答

1

Paypal在其开发者网站上提供了一个IPN(即时付款通知)测试工具 - 您可以使用它来在交易完成后执行回调。然后,您可以编写一个PHP脚本来检查付款状态,验证其是否成功,然后进行任何您想要的操作...

请查看开发人员沙盒中的文档,以了解其工作原理,他们提供了一些用于测试的良好示例代码...


为什么收入不会简单地显示在测试账户中? - DiegoP.
还有为什么PayPal表单中没有显示价格..这让我感到困惑。 - DiegoP.
也许你需要仔细检查一下代码,确保你使用的是沙盒环境的正确 API 密钥和凭据,而不是生产环境的 API 密钥。这在过去曾经给我带来了一些麻烦... - Dan

1

您可以使用IPN来模拟结帐请求,但它只会将请求发送到您的URL,以便您测试应用程序。如果您想测试是否收取了正确的金额或类似的事情,您必须更改购买物品时使用的表单。它不应该指向paypal.com,而应该指向沙盒网址https://www.sandbox.paypal.com/cgi-bin/webscr

这会让您感觉像真正购买一样,但实际上并不是,因为您将使用测试帐户。购买后,您可以转到沙盒,使用测试帐户登录,并查看一个帐户少了钱(买家),另一个帐户多了钱(卖家)。


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); 
?>

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接