这是我在使用woo-commerce checkout选项。付款后,我想要返回具有订单ID和订单密钥的URL。
我的问题是它只返回没有订单ID和订单密钥。
我问题的任何解决方案?
目前我收到返回网址=> example.com/checkout/order-received/?token=4688991269822。
但我希望它像那样=> example.com/checkout/order-received/orderid/?key=wc_order_593bc1dcb4324
因为如果我选择另一个支付网关而不是我的自定义支付网关。当我点击下订单时,订单已经完成,这种类型的url => http://example.com/checkout/order-received/7170/?key=wc_order_593bc1dc2343
在此网址中,它会自动传递这些订单ID值和订单密钥。
那么我如何在expresscheckout.php中的Return url中获得这种类型的url。
请提前帮助谢谢。
这是expresscheckout.php
require_once ("paypalfunction.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 = $_POST["Payment_Amount"];
//$paymentAmount = $_SESSION["Payment_Amount"];
$_SESSION["Payment_Amount"] = 0;
//'------------------------------------
//' The currencyCodeType and paymentType
//' are set to the selections made on the Integration Assistant
//'------------------------------------
$currencyCodeType = "USD";
$paymentType = "Sale";
#$paymentType = "Authorization";
#$paymentType = "Order";
//'------------------------------------
//' 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 = site_url().'/checkout/order-received/';
//'------------------------------------
//' 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 = site_url().'/checkout/';
//'------------------------------------
//' 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;
}