I\'m getting the following error when I run the app: BasicNetwork.performRequest: Unexpected response code 401
I need to pass an email, a password and a token to acc
The JsonObjectRequest is extended JsonRequest which override getBody() method directly, so your getParam() would never invoke, I recommend you extend StringRequest instead of JsonObjectRequest.
your can check this answer for more details.
by the way, you've another choice : Netroid, that based Volley, offered more features at all.