PayuMoney Integration in Android : Some error occured! Try again

青春壹個敷衍的年華 提交于 2019-11-28 10:42:48

问题


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.


回答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.




回答2:


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;



来源:https://stackoverflow.com/questions/38702790/payumoney-integration-in-android-some-error-occured-try-again

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!