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.
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
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;
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.