柑橘付款重定向网址无法正常工作

时间:2015-11-19 07:11:56

标签: android payment-gateway citrus-pay

我正在将柑橘支付整合到Android应用程序中,一切都在沙盒中运行良好,直到我的交易成功但是一旦我的交易成功,我就会得到以下日志:

enter image description here

MOTO SUCCESSFUL *** {" txMsg":"交易成功"," pgRespCode":" 0","的redirectUrl":" HTTPS://sandbox.citruspay.com/mpiServlet/715259413249776a736d6a62546c5a413247745871773d3d"}

其中说交易成功,我可以在我的沙盒消费者帐户中看到交易成功,但当它在日志中重定向到上面的网址时显示在屏幕下方:

enter image description here

当我尝试按下后退按钮时:

我无法在应用程序中找到我的最后一个活动我试图在应用程序中添加返回网址:private static final String RETURN_URL =" http://my.app";

应该回到我的活动但没有帮助,任何帮助或提示将不胜感激。

enter image description here

1 个答案:

答案 0 :(得分:1)

我通过发送托管在我的服务器上的返回页面网址解决了问题,如下所示:

 <?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显示消息成功交易并返回Activity!

<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>";                                          
 }      
?>      
相关问题