Post Method using Volley not working

前端 未结 5 1036
天命终不由人
天命终不由人 2020-12-06 19:32

Hi i am using Volley for my login page. I need to pass data like this manner

{
userID : \'-988682425884628921\',
email :\'aditya@vyas.com\',
pas         


        
5条回答
  •  半阙折子戏
    2020-12-06 20:06

    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";
    }
    

提交回复
热议问题