payu

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

Hash param is missing in payU payment gateway android integration

坚强是说给别人听的谎言 提交于 2019-12-02 10:36:28
问题 I need to integrate payU payment gateway in my android app. But when app is trying to to get hash key it gives me error saying that Hash param is missing In demo app there are two option to generate hash if(null == salt) generateHashFromServer(mPaymentParams); else generateHashFromSDK(mPaymentParams, intent.getStringExtra(PayuConstants.SALT)); In demo app there are note saying that hash key generation should be done on server side so I am passing salt as null but Now the question is Which

Hash param is missing in payU payment gateway android integration

主宰稳场 提交于 2019-12-02 03:48:22
I need to integrate payU payment gateway in my android app. But when app is trying to to get hash key it gives me error saying that Hash param is missing In demo app there are two option to generate hash if(null == salt) generateHashFromServer(mPaymentParams); else generateHashFromSDK(mPaymentParams, intent.getStringExtra(PayuConstants.SALT)); In demo app there are note saying that hash key generation should be done on server side so I am passing salt as null but Now the question is Which server url I have to use to generate hash? Demo app is using this url https://payu.herokuapp.com/get_hash

'sorry some error occurred' while integrating PayUMoney payment gateway in Test mode

纵然是瞬间 提交于 2019-11-28 03:52:00
I'm trying to integrate PayUMoney payment gateway in my client site. My client provided me the login details of PayUMoney . I was able to locate the Merchant Key but cannot find either of the two: Merchant Salt Developer site where I can create a test account and test on sandbox PayUMoney provided me a form with some default value but when I test, it gives the message: sorry some error occurred. Here is the form: <?php // Merchant key here as provided by Payu $MERCHANT_KEY = "JBZaLc"; // Merchant Salt as provided by Payu $SALT = "GQs7yium"; // End point - change to https://secure.payu.in for

'sorry some error occurred' while integrating PayUMoney payment gateway in Test mode

廉价感情. 提交于 2019-11-27 05:13:26
问题 I'm trying to integrate PayUMoney payment gateway in my client site. My client provided me the login details of PayUMoney . I was able to locate the Merchant Key but cannot find either of the two: Merchant Salt Developer site where I can create a test account and test on sandbox PayUMoney provided me a form with some default value but when I test, it gives the message: sorry some error occurred. Here is the form: <?php // Merchant key here as provided by Payu $MERCHANT_KEY = "JBZaLc"; //