payumoney

How to integrate PayUMoney iOS SDK in swift project [closed]

冷暖自知 提交于 2019-12-19 09:28:07
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed last year . I've downloaded the PayUMoney iOS SDK from the PayUMoney website. I'm now unable to integrate the SDK with my swift project. 回答1: This answer is taken from PayU documentation itself, i am answering here just because it took me hours to implement with their documentation. Hi i can

Issue in PayUmoney Android integration

北战南征 提交于 2019-12-13 13:38:33
问题 I am trying to integrate PayUMoney in my application. Application gives proper output if i use following test credentials; String merchant_key = "kYz2vV"; String salt = "zhoXe53j"; String base_url = "https://test.payu.in/_payment"; String SUCCESS_URL = "https://www.payumoney.com/mobileapp/payumoney/success.php"; String FAILED_URL = "https://www.payumoney.com/mobileapp/payumoney/failure.php"; When I replace Key & salt with live credentials as; String merchant_key = "gtKFFx"; String salt =

E500 error in payubiz integration , how to solve it?

不想你离开。 提交于 2019-12-12 04:37:14
问题 For our application we use payubiz as a payment gateway. While testing our app we are facing a new error [error code E500] Bank failed to authenticate the customer". I have no idea why this is happening for the past two weeks. Before that it worked very well. Can anyone help me with this? Thanks in advance! 回答1: It seems you entered wrong card detail or use expired card. Use fresh dummy card. It can be get from PayU for SANDBOX environment. My dummy card detail as follows: CardName: Any name

Payumoney Codeigniter Integration

时光怂恿深爱的人放手 提交于 2019-12-06 11:02:33
问题 I am working on CodeIgniter payUmoney integration. I have a registration form from where one registers and get paid with payUmoney payment gateway and form contains multiple select fields also. I need to use the payUmoney payment gateway. So please help me that how can I insert the records into the database after the successful transaction in CodeIgniter.? Actually here is my form. Now, what I want to submit the form but After successful payment. For me a little problem that where will I

Integrating PayU money to Ionic + Cordova Hybrid App

醉酒当歌 提交于 2019-12-05 01:42:44
问题 please help me how to set or render success url to my ionic app. when i integrating PayU money to Ionic app it requires Success Url and Failure Url after completion of payment it render into success url but it's not back to Ionic App. <form name="sendParam" method="post" action="https://test.payu.in/_payment.php"> <input type="text" name="key" value="P3kHif" /> <input type="text" name="txnid" value="mdd0123" /> <input type="text" name="amount" value="100" /> <input type="text" name=

Payumoney Codeigniter Integration

社会主义新天地 提交于 2019-12-04 16:14:43
I am working on CodeIgniter payUmoney integration. I have a registration form from where one registers and get paid with payUmoney payment gateway and form contains multiple select fields also. I need to use the payUmoney payment gateway. So please help me that how can I insert the records into the database after the successful transaction in CodeIgniter.? Actually here is my form. Now, what I want to submit the form but After successful payment. For me a little problem that where will I store the data till payment succeeded. Means I want to store the data after a successful transaction. One

Integrating PayU money to Ionic + Cordova Hybrid App

…衆ロ難τιáo~ 提交于 2019-12-03 16:18:54
please help me how to set or render success url to my ionic app. when i integrating PayU money to Ionic app it requires Success Url and Failure Url after completion of payment it render into success url but it's not back to Ionic App. <form name="sendParam" method="post" action="https://test.payu.in/_payment.php"> <input type="text" name="key" value="P3kHif" /> <input type="text" name="txnid" value="mdd0123" /> <input type="text" name="amount" value="100" /> <input type="text" name="productinfo" value="oxygenconcentrator" /> <input type="text" name="firstname" value="test" /> <input type="text

PayU Money Gateway iOS Swift

我们两清 提交于 2019-12-02 22:18:58
问题 I want to integrate the payU Money sdk in my app using swift2.0 I am using this sdk: https://github.com/payu-intrepos/Documentations/wiki/8.1-NEW-iOS-Seamless-SDK-integration Where to create the test account for testing. 回答1: import UIKit var merchantKey="your live merchant key" var salt="your live merchant salt" var PayUBaseUrl="https://secure.payu.in" class PaymentScreen: UIViewController,UIWebViewDelegate { @IBOutlet weak var myWebView: UIWebView! override func viewDidLoad() { super

PayU Money Gateway iOS Swift

时间秒杀一切 提交于 2019-12-02 11:17:37
I want to integrate the payU Money sdk in my app using swift2.0 I am using this sdk: https://github.com/payu-intrepos/Documentations/wiki/8.1-NEW-iOS-Seamless-SDK-integration Where to create the test account for testing. dewanshu sharma import UIKit var merchantKey="your live merchant key" var salt="your live merchant salt" var PayUBaseUrl="https://secure.payu.in" class PaymentScreen: UIViewController,UIWebViewDelegate { @IBOutlet weak var myWebView: UIWebView! override func viewDidLoad() { super.viewDidLoad() self.initPayment() } func initPayment() { var i = arc4random() let amount = "1" let

Payu payement error “Some error occurred, Try again!”

折月煮酒 提交于 2019-12-02 04:24:14
I have integrated payu into my android app through official docs at https://www.payumoney.com/dev-guide/mobilecheckout/android.html#prereq . The problem i'm facing is that my code works perfectly with test credentials, and fails when i use credentials of my live account that i want to integrate in the app. public void makePayment(View view) { String phone = "8882434664"; String productName = "product_name"; String firstName = "piyush"; String txnId = "0nf7" + System.currentTimeMillis(); String email = "piyush.jain@payu.in"; String sUrl = "https://test.payumoney.com/mobileapp/payumoney/success