Hi i am using Volley for my login page. I need to pass data like this manner
{
userID : \'-988682425884628921\',
email :\'aditya@vyas.com\',
pas
Beware of content-type header. Volley handles it differently from other headers and it's not shown in Map<> Headers. Instead of overriding getHeaders() method to set content-type, you should override getBodyContentType() like this:
@Override
public String getBodyContentType()
{
return "application/json; charset=utf-8";
}