payu

In payu, when integrated inside WebView of android, clicking back button that is inside the WebView doesn't cancel the transaction

生来就可爱ヽ(ⅴ<●) 提交于 2020-08-20 14:55:48
问题 When I click on a Button , I go to payment page. There I can see 3 back Button . the usual one at the bottom the one in the ActionBar / Toolbar the one inside the WebView Clicking on the 1 and 2 is working fine but clicking on 3 doesn't take me back or doesn't cancel the transaction. Yet this is not the full story. When I select on Cards it takes me to the respective page where I enter the card details. Then when I click on 3, it comes back to the main page(selecting type of payment viz.,

In payu, when integrated inside WebView of android, clicking back button that is inside the WebView doesn't cancel the transaction

放肆的年华 提交于 2020-08-20 14:43:14
问题 When I click on a Button , I go to payment page. There I can see 3 back Button . the usual one at the bottom the one in the ActionBar / Toolbar the one inside the WebView Clicking on the 1 and 2 is working fine but clicking on 3 doesn't take me back or doesn't cancel the transaction. Yet this is not the full story. When I select on Cards it takes me to the respective page where I enter the card details. Then when I click on 3, it comes back to the main page(selecting type of payment viz.,

PayUMoney payment gateway issue

荒凉一梦 提交于 2020-01-12 02:32:08
问题 I have to integrate PayUMoney payment gateway in my iOS app. They don't have SDK for iOS. So I have to load some web URL in webview for the payment. My parameters are int i = arc4random() % 9999999999; NSString *strHash = [self createSHA512:[NSString stringWithFormat:@"%d%@",i,[NSDate date]]];// Generatehash512(rnd.ToString() + DateTime.Now); NSString *txnid1 = [strHash substringToIndex:20]; NSLog(@"tnx1 id %@",txnid1); NSString *key = @"JBZaLc"; NSString *amount = @"1000"; NSString

java.lang.ClassNotFoundException: android.net.Network

≯℡__Kan透↙ 提交于 2020-01-06 04:15:07
问题 This is little related to Payubiz payment gateway sdk integration. However, the main problem is related to building a project. Whenever we try to run the application on emulator. We get the following failure: What went wrong: Execution failed for task ':app:transformClassesWithInstantRunForAppDebug'. java.lang.ClassNotFoundException: android.net.Network However, the application builds and run smoothly on running on a device. We have already contacted the Payu Team for the issue. But as it is

payumoney post integration in android.error

半腔热情 提交于 2020-01-05 04:22:31
问题 Hello I am integrating payumoney in app and when i'm trying to post all fields to URL it says that Sorry, some problem occurred . Below i am pasting my code. gen Hash(); String post Data = "hash=hash&key=key&txnid=txnid&amount=amount&product info=product info&first name=first name&email=email&contact=contact&SALT=SALT&SURL=SURL&FURL= FURL"; web View = (Web View) findViewById(R.id.webView1); webView.getSettings().setJavaScriptEnabled(true); webView.postUrl(url, EncodingUtils.getBytes(postData,

PayUMoney - Android: Only getting **paymentId** from payUMoney SDK after successful payment

霸气de小男生 提交于 2019-12-25 07:44:29
问题 I'm integrating payUMoney in my Android application. I'm getting only paymentId after successful payment in both environment i.e Test & Production. I need Transaction Details as well from payUMoney. I have also contacted payUMoney technical team but not getting any response. See image attached for payUMoney response which I have printed in Logcat. What I have tried is like below. public void makePayment() { String phone = "8882434664"; String productName = "product_name"; String firstName =

How to integrate PayU money Gateway in Android? [closed]

拈花ヽ惹草 提交于 2019-12-20 08:36:10
问题 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 3 years ago . I am developing an Ecommerce app in which I want to integrate Payumoney payment gateway. Can someone help me with some procedure, link or tutorial, how to do so? Thanks. 回答1: I have done Perfectly :) :) You have to edit SuccessURL and FailureURL : Its Working for Me Perfectly.

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 =

Integrating PayU Money Gateway iOS Swift

别等时光非礼了梦想. 提交于 2019-12-11 10:53:42
问题 Working on Xcode 7.1, Swift 2.0 I work on Swift and currently trying to integrate PayU Money payment into iOS App (following this documentation). I find it difficult to understand completion block and more the documentation is all in objective C. Can someone help me resolve this issue? I am not a pro in programming so just wanted to make sure that I am doing the write thing. Here is my code: import UIKit class ViewController: UIViewController { var paymentParamForPassing =

Payumoney getway error occur in ios

旧城冷巷雨未停 提交于 2019-12-10 19:22:20
问题 I have integrate payumoney payment getway. But i get error in webView not load this https://test.payu.in/_payment testing url. And my code: int i = arc4random() % 9999999999; NSString *strHash = [self createSHA512:[NSString stringWithFormat:@"%d%@",i,[NSDate date]]]; NSString *txnid1 = [strHash substringToIndex:20]; NSLog(@"tnx1 id %@",txnid1); NSString *key = @"xxxxx"; // my key NSString* salt = @"xxxxxx"; // my salt key NSString *amount = @"1.00"; NSString *productInfo = @"Nice product";