I'm integrating payuMoney (not payu biz) in my android application. I followed this official documentation of PayuMoney. I have changed merchant key, merchant id and url of hash generation of my server in this sample app. Then it is taking me to PayuMoney sdk screen where I can login/signup. But it is showing the toast message 'Some error occured! Try again' once I login with my credentials. Is there anything else that I'm missing? Please guide me.
Asked
Active
Viewed 2,682 times
1
-
You need to better check with payment gateway support. – Ramesh Aug 01 '16 at 15:41
-
Hey Did you solved the issue ?? I am facing the same please comment. – Meghal Agrawal Dec 05 '16 at 10:30
-
Any one found solution for this issue? I am facing same right now.. – Hari krishna Mar 20 '17 at 13:19
-
I'm also facing the same issue – Prasheel May 29 '17 at 17:37
-
Hello did u find a solution?? If yes, please add answer. – Rakesh Yadav Jul 15 '17 at 10:38
2 Answers
1
This happens because you might not have activated your account on PayUMoney. Try contacting the customer service and get your account activatied. The error will be resolved.

Prasheel
- 985
- 5
- 22
0
This happens when server generated hash not equal to payUmoney generated hash so payUmoney don't allow payments
also, shows blank screen after login
to fix it generate a hash like this formate
String hashSequence=KEY+"|"+txn+"|"+amount+"|"+productinfo+"|"+firstname+"|"+email+"|"+UDF1+"|"+UDF2+"|"+UDF3+"|"+UDF4+"|"+UDF5+"|"+SALT;

jagapathi
- 1,635
- 1
- 19
- 32