I found I had to override getBodyContentType()
in order to get the Content-Type
header to update correctly:
public String getBodyContentType()
{
return "application/json; charset=utf-8";
}
Here is my question with some more details on this issue:
- Volley Content-Type header not updating