我解決了這個問題通過發送這是我自己的服務器上承載像下面的返回頁面網址:
<?php
$access_key = "xxxx"; //put your own access_key - found in admin panel
$secret_key = "xxxxx"; //put your own secret_key - found in admin panel
$return_url = "http://xxxxx/Citrus/return_page.php"; //put your own return_url.php here.
$txn_id = time() . rand(10000,99999);
$value = $_GET["amount"]; //Charge amount is in INR by default
$data_string = "merchantAccessKey=" . $access_key
. "&transactionId=" . $txn_id
. "&amount=" . $value;
$signature = hash_hmac('sha1', $data_string, $secret_key);
$amount = array('value' => $value, 'currency' => 'INR');
$bill = array('merchantTxnId' => $txn_id,
'amount' => $amount,
'requestSignature' => $signature,
'merchantAccessKey' => $access_key,
'returnUrl' => $return_url); echo json_encode($bill); ?>
,並返回URL顯示消息成功交易並返回到活動! 。
<html>
<head>
<script type="text/javascript">
var globaldata;
function setdata(data) {
globaldata = data;
}
function postResponseiOS() {
return globaldata;
}
function postResponse(data) {
CitrusResponse.pgResponse(data); }
</script>
</head>
<body>
</body>
</html>
<?php
$secret_key = "xxxxx";
$data =array();
foreach ($_POST as $name => $value) {
$data[$name] = $value;
}
$verification_data = $data['TxId']
. $data['TxStatus']
. $data['amount']
. $data['pgTxnNo']
. $data['issuerRefNo']
. $data['authIdCode']
. $data['firstName']
. $data['lastName']
. $data['pgRespCode']
. $data['addressZip'];
$signature = hash_hmac('sha1', $verification_data, $secret_key);
if ($signature == $data['signature'])
{
$json_object = json_encode($data);
echo "<script>
postResponse('$json_object');
</script>";
echo"<script> setdata ('$json_object');
</script>";
}
else {
$response_data = array("Error" => "Transaction Failed",
"Reason" => "Signature Verification Failed");
$json_object = json_encode($response_data);
echo "
<script>
postResponse('$json_object');
</script>";
echo"
<script>
setdata ('$json_object');
</script>";
}
?>
@ MyMaterPiece,從哪裏CitrusResponse來自哪裏? –