payu

Payment processing Integration android

情到浓时终转凉″ 提交于 2019-12-09 13:58:15
问题 I am doing my first application. Now i need to integrate payu integration in app using custom browser. i don't have knowledge on how to do this. I searched for this, but i failed. please any one suggest me or provide me links for this integration. thank you in advance. like this : https://drive.google.com/folderview?id=0B4URmsDLhGXmfjFmbDQ5b2V0bVhjdTZMNExMVHRFMG1PRFFYeUV0LU9nSWU4U0pqaW00OU0&usp=drive_web&ddrp=1# 回答1: Although u have to try at least once from yourself there are lot of SO

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=

INVALID_USER_CREDENTIALS/JSON_EXCEPTION in “PayU” Android Integration

拟墨画扇 提交于 2019-12-04 12:10:55
问题 I am tring to integrate payU payment gateway with my ecommerce application. I have a account on test payU with merchant id, key and salt. I am working on this demo application, whenever i change parameters like merchant key , salt . I get a error code 5014 . Which can be either of them. int INVALID_USER_CREDENTIALS = 5014; int JSON_EXCEPTION = 5014; Note : I am getting this as a response string : "Something went wrong : Value <!DOCTYPE of type java.lang.String cannot be converted to

How to integrate TEST PayU Payment Gateway in android application?

妖精的绣舞 提交于 2019-12-04 10:56:46
问题 I am new in Payment Gateway. Currently, I am working on a mobile app where I need to integrate PayU payment gateway in android app. So far, I have created a code for TEST url & when I run my app I get below exception: An error occurred. Sorry, some problem occurred. Screenshot of mobile app This is my code: public class PayMentGateWay extends Activity { private ArrayList<String> post_val = new ArrayList<String>(); private String post_Data=""; WebView webView ; final Activity activity = this;

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

INVALID_USER_CREDENTIALS/JSON_EXCEPTION in “PayU” Android Integration

◇◆丶佛笑我妖孽 提交于 2019-12-03 07:38:27
I am tring to integrate payU payment gateway with my ecommerce application. I have a account on test payU with merchant id, key and salt. I am working on this demo application , whenever i change parameters like merchant key , salt . I get a error code 5014 . Which can be either of them. int INVALID_USER_CREDENTIALS = 5014; int JSON_EXCEPTION = 5014; Note : I am getting this as a response string : "Something went wrong : Value <!DOCTYPE of type java.lang.String cannot be converted to JSONObject" I am trying to debug it.But am unable to find a proper documentation. Please help. From the Payu

How to integrate TEST PayU Payment Gateway in android application?

你说的曾经没有我的故事 提交于 2019-12-03 06:50:08
I am new in Payment Gateway. Currently, I am working on a mobile app where I need to integrate PayU payment gateway in android app. So far, I have created a code for TEST url & when I run my app I get below exception: An error occurred. Sorry, some problem occurred. Screenshot of mobile app This is my code: public class PayMentGateWay extends Activity { private ArrayList<String> post_val = new ArrayList<String>(); private String post_Data=""; WebView webView ; final Activity activity = this; private String tag = "PayMentGateWay"; private String hash,hashSequence; String merchant_key="JBZaLc";

PayUMoney payment gateway issue

◇◆丶佛笑我妖孽 提交于 2019-12-03 01:38:55
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 *productInfo = @"Nice product"; NSString *firstname = @"Mani"; NSString *email = @"mani.ingenius@gmail.com";

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

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

家住魔仙堡 提交于 2019-12-02 15:59:20
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. I have done Perfectly :) :) You have to edit SuccessURL and FailureURL : Its Working for Me Perfectly. public class PayUMoneyActivity extends AppCompatActivity { /** * Adding WebView as setContentView */ WebView webView; /** * Context for Activity */ Context activity; /** * Order Id * To Request for Updating Payment Status if Payment Successfully Done */ int mId; //Getting from Previous Activity /** * Required Fields */ //