【问题标题】:How to Integrate Payumoney in AngularJS Application?如何在 AngularJS 应用程序中集成 Payumoney?
【发布时间】:2016-06-30 06:23:18
【问题描述】:

我已经发送了所有的强制参数。点击提交按钮后,响应页面是这样的。校验和失败并且无法处理请求。

html表单

<form action="https://secure.payu.in/_payment" method="post">
<input type="text" ng-model="checkout.txnid"  name="txnid">
 <p>{{checkout.txnid="123456"}}</p>
<input type="text" ng-model="checkout.key"  name="key">
 <p>{{checkout.key="WHlKGc"}}</p>
<input type="text" ng-model="checkout.amount"  name="amount">
 <p>{{checkout.amount=checkout.grandtotal}}</p>
<input type="text" ng-model="checkout.productinfo"  name="productinfo">
 <p>{{checkout.productinfo="pending"}}</p>
<input type="text" ng-model="checkout.firstname" name="firstname">
 <p>{{checkout.firstname=userinfo.name}}</p>
<input type="text" ng-model="checkout.email"  name="email">
 <p>{{checkout.email=userinfo.email}}</p>
<input type="text" ng-model="checkout.phone"  name="phone">
 <p>{{checkout.phone="8125434557"}}</p>
<input type="text" ng-model="checkout.hash" name="hash">
 <p>{{checkout.hash=encrypttext}}</p>
<input type="text" ng-model="checkout.surl"  name="surl">
 <p>{{checkout.surl="www.google.com"}}</p>
<input type="text" ng-model="checkout.furl"  name="furl">
 <p>{{checkout.furl="www.appqube.in"}}</p>
<input type="text" ng-model="checkout.service_provider" name="service_provider">
 <p>{{checkout.service_provider="payu_paisa"}}</p>
<button class="button style-10" href="" ng-click="ProceedToCheckout(checkout)" type="submit" value="submit">Checkout</button>

控制器:使用 Sha512 生成哈希密钥。

var string = data.key + '|' + data.txnid + '|' + data.amount + '|' + data.productinfo + '|' + data.firstname + '|' + data.email + '|||||||||||' + data.salt;
$scope.encrypttext = $crypthmac.encrypt(string,"");

我正在使用 angular-hmac-512 进行加密:

txnid:123456
key:WHlKGc
amount:120
productinfo:pending
firstname:vasu
email:narala.vasu@gmail.com
phone:8125434557
hash:06d5393243d78d0e0518bb5dac11d762be576c23c3e51344f604547550328f6e0c84b9d8fed4543766e4057abb1ae87ccf1d9cb7b069cef498d2fcdcdd5e84dc
surl:www.google.com
furl:www.appqube.in
service_provider:payu_paisa.

我是 Angular 的新手。请帮助我如何将Form action 重定向到https://secure.payu.in/_payment

【问题讨论】:

  • 你解决了这个问题吗?
  • 在客户端提供盐是否安全?

标签: angularjs payumoney


【解决方案1】:

您直接重定向到生产。相反,您应该使用 PayU 提供的测试链接。 Here是下载PayU集成指南的链接。

测试网址是https://test.payu.in/_payment

【讨论】:

    猜你喜欢
    • 2016-06-08
    • 1970-01-01
    • 2019-04-24
    • 1970-01-01
    • 2017-06-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-12-28
    相关资源
    最近更新 更多