payumoney

Payumoney integration in react-native

China☆狼群 提交于 2021-01-29 10:24:34
问题 I am trying to integrating payumoney payment gateway in react-native but when I pressed "Pay" button I got an error "java.lang.double cannot be cast to java.lang.string" on the mobile screen. I searched the whole google for the code but I got in node js as backend. My JS file is like this:- import * as React from 'react'; import { Image, ImageBackground, ScrollView, Animated, Text, StyleSheet, View, ListView, TextInput, ActivityIndicator, Alert, TouchableOpacity } from 'react-native'; import

Anroid Studio warning “ Setting <base-config cleartextTrafficPermitted=”true“/> is not recommended.”

江枫思渺然 提交于 2020-01-25 06:38:10
问题 I am integrating payUmoney with my app. For android above 9 cleartextTrafficPermitted="false" by default. So I get the following error - The webpage at hhtp://180.179.174.15:3000/pgSimulator/axis/redirect could not be loaded because: net::ERR_CLEARTEXT_NOT_PERMITTED So in network_secrity_config.xml, I change it to true as below-- <?xml version="1.0" encoding="utf-8"?> <network-security-config> <base-config cleartextTrafficPermitted="true"/> </network-security-config> And now Android studio

Why make user login in android SDK of PayuMoney gateway?

本秂侑毒 提交于 2020-01-15 06:56:43
问题 I am trying to integrate PayUMoney SDK for android and successfully added the SDK in my application. When the user clicks on the pay button a login page opens up. Why should the user be made to login/create an account for payu? As soon as the user presses the pay button the options for payment should open up but that is not the case. I have tried the sample app given by them in github too and seems that it has the same flow. I got a video in youtube showing the problem for anybody who would

PayUMoney redirecting page after successful transaction

跟風遠走 提交于 2020-01-06 15:17:23
问题 I am developing a sample application with PayUMoney Transaction. The app functions well. But I am looking for redirecting the page to an Activity after the successful transaction. I am using payUMoney SDK Does anyone gone through this? Please guide me.. any kind of help appreciated. Thanks in advance 回答1: I faced the similar issue.I assume you have integrated payUMoney using sdk. Your sdk will be having a WebViewActivity which is used to redirect user to success/failure screen after

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

北战南征 提交于 2019-12-31 03:54:28
问题 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();

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 =

Android PayUMoney integration error “some error occured”

倖福魔咒の 提交于 2019-12-25 02:22:51
问题 I am trying to integrate PayUMoney payment gateway in my android app, I am not sure what is happening with it. Even If I have generated hash from server and followed exactly the same procedure provided on PayUMoney website I am getting TOAST message some error occured . Event landing page is not loaded, as soon as I move from checkout page to payU spinner rotates a while and after that I get TOAST message and I land back to my checkout page. PayUMoney Code String serverCalculatedHash =

PayUMoney integration - How to calculate hash for comparing with response?

时光总嘲笑我的痴心妄想 提交于 2019-12-24 03:34:46
问题 Generating Hash for Post request $hashSequence = "key|txnid|amount|productinfo|firstname|email|udf1|" ."udf2|udf3|udf4|udf5|udf6|udf7|udf8|udf9|udf10"; $hashVarsSeq = explode('|', $hashSequence); $hashString = ''; foreach ($hashVarsSeq as $hashVar) { $hashString .= isset($payObject['params'][$hashVar]) ? $payObject['params'][$hashVar] : ''; $hashString .= '|'; } $hashString .= $salt; //generate hash $hash = strtolower(hash('sha512', $hashString)); After getting successful response generating

Receive_SMS Permission issue

大兔子大兔子 提交于 2019-12-23 07:59:09
问题 As you know, According to Google Developer policy if our core functionality of the app does not depends on SMS than we should remove RECEIVE_SMS android permission and try to find a different Alternative. But my issue is I am not using RECEIVE_SMS in manifest or in asking Runtime. Still, Google warns me of using RECEIVE_SMS permission. Though on play store If I check permissions required in this app it shows RECEIVE_SMS permission. You can see some of the screenshots of my app where I