How do I integrate the ATOM payment gateway in my app?

后端 未结 4 897
忘了有多久
忘了有多久 2020-12-09 04:55

I am new to Android.
I want to know how can I integrate the ATOM payment gateway mobile checkout page in my application?

I want it so that the u

4条回答
  •  长情又很酷
    2020-12-09 05:39

    How does a Merchant Integrate with atom Online Payment Gateway?

    1. A merchant first needs to Sign Up with atom Online Payment Gateway-atom Paynetz.
    2. Once a customer wants to make a payment to the merchant, the merchant sends an EPI request to atom Paynetz.
    3. The EPI request facilitates a transfer of funds between the customer and merchant via Paynetz.
    4. The Paynetz platform validates the merchant and responds with an XML payload if successful.
    5. Based on the parameters in the XML, the merchant site has to send a new EPI request to Paynetz by parsing the XML response.
    6. The list of banks approved for the merchant will be displayed for selection on the Paynetz system, which is redirected to the customer.
    7. The customer then chooses the bank through which he/she wishes to do the payment.
    8. The EPI redirects the customer to the corresponding bank’s net banking interface. The customer can now complete the transaction.

    PHP code for ATOM integration :

    1.Create a form

    MERCHANT->RESPONSE->url;
    // eof code to generate token
    // code to generate form action
    $param = “”;
    $param .= “&ttype=NBFundTransfer”;
    $param .= “&tempTxnId=”.$xmlObj->MERCHANT->RESPONSE->param[1];
    $param .= “&token=”.$xmlObj->MERCHANT->RESPONSE->param[2];
    $param .= “&txnStage=1″;
    $url = $url.”?”.$param;
    // eof code to generate form action
    ?>
    
    0 讨论(0)
提交回复
热议问题