Skip to content Skip to sidebar Skip to footer

Volley-authfailureerror

I am trying to insert new user in phpMyAdmin database when users populate textboxes on android device. For that i write php code and I test it on POSTMAN and it's works but when i

Solution 1:

Try this:

In getBodyContentType() method return "application/x-www-form-urlencoded" instead of "application/json"

Code

@OverridepublicStringgetBodyContentType() {
       return"application/x-www-form-urlencoded";
}

Post a Comment for "Volley-authfailureerror"