I am getting this response from the server {\"status\":\"true\",\"msg\":\"success\"}
{\"status\":\"true\",\"msg\":\"success\"}
I am trying to parse this json string using Jackson parser library
I had a similar error today and the issue was the content-type header of the post request. Make sure the content type is what you expect. In my case a multipart/form-data content-type header was being sent to the API instead of application/json.
multipart/form-data
application/json