如何在我的离子应用程序中处理支付网关?

时间:2017-11-02 08:17:08

标签: angular ionic-framework payment-gateway

现在我正在使用来自tracknpay.com的付款网关。

payment.ts

 payment(){
  var paymentdata={
  'api_key':'xxxx',
  'order_id':'11111111111124',
  'mode':'TEST', 
  'amount':200,

  'currency':'INR',

  'description':'BLABLA',
  'name':'Ajith',

  'email':'ajith@gmail.com',

  'phone':'8086502009',
  'city':'tvm',

  'country':'IND',

  'zip_code':'695505',
  'return_url':'http://viarchtechnologies.com/',
  'hash':'B1AA86BF8108702CAE54C2F5C017BCB36F6C47EFF9CB74A840938EA3AD0E88BBD8638A17F0F5B0D62DDDBABFC79C242281220CD12449D371676CAF3F44D1DD4F' 
  }
  console.log(paymentdata)
  return this.http.post('https://biz.traknpay.in/v2/paymentrequest',paymentdata).map(res=>res.text()).subscribe(res=>
{
  console.log(res)
 // const browser = this.iab.create('https://ionicframework.com/');
  window.open("https://biz.traknpay.in/v2/paymentrequest")
},
    err=>{
      console.log(err)
        })

}

我得到了成功回复作为付款页面html模板。我也怀疑return_url.how我可以重定向到他们的付款页面并完成付款流程。

0 个答案:

没有答案