paypal快速整合混乱和paypal提供的文件不工作

Sar*_* B. 4 php paypal

我使用paypal集成向导来创建我需要将paypal集成到自定义购物车中的文件,并在paypalfunctions.php页面中添加了api凭据.我加载了向导提供的expresscheckout.php文件,并收到此错误

SetExpressCheckout API call failed. Detailed Error Message: 
Security header is not validShort Error Message: Security 
errorError Code: 10002Error Severity Code: Error
Run Code Online (Sandbox Code Playgroud)

这是什么意思?

这是我加载的页面.目前我没有将这些页面附加到商业网站,我只测试paypal提供的文件,看看它是否在进行任何集成之前有效.

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
//'------------------------------------
$paymentAmount = "10.45";

//'------------------------------------
//' 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://www.mysite.com/orderConfirm.php";

//'------------------------------------
//' 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://www.mysite.com/cancelOrder.php";

//'------------------------------------
//' 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;
}
Run Code Online (Sandbox Code Playgroud)

Cha*_*les 5

Detailed Error Message:  Security header is not valid
Run Code Online (Sandbox Code Playgroud)

这是什么意思?

这意味着您的安全标头无效.

针对您的特定错误消息39,000 Google结果表明您使用的API用户名和密码对于您正在使用的特定端点不正确.您的凭据是针对沙箱的,而您是在实时使用它们,或者您的凭据是实时的,并且您将它们用于沙箱.或者有一个错字.