Skip to content
Advertisement

Android Volley getParams() method not getting called for JsonObjectRequest

I have overrided getParams(), and mEmail, mUsername etc. are globally declared.

JavaScript

This is my server side code:

JavaScript

The response I am getting is always not ok, becasuse I already have an empty row in my database, and I am trying upload an empty row again. Can someone tell why I am not able to get the data? Why am I getting empty data?

Advertisement

Answer

use this Custom volley request class

JavaScript

you can use it with

JavaScript

Actually this a issue with sending parameters with volley. Check this answer https://stackoverflow.com/a/27091088/1320616

EDIT: Explanation for this behaviour

your JsonObjectRequest class extends from JsonRequest which extends from Request.

inside your Request class there is a method

JavaScript

notice that this method is calling getParams() method. It is the same method that you are overriding while making the call.

But if you look inside JsonRequest class, there is a method

JavaScript

it means the getBody() of Request has been overridden by getBody() of JsonRequest class which means your getParams() will never get called. So you need a custom class which directly extends Request class and doesn’t override the getBody() method of Request class.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement