Fairly new to android development. I am trying to use retrofit to send a post request. In my retrofit logs, I am seeing
Content-Type: text/plain; charset=utf
You have to add the request header like this :
@Headers("Content-Type: application/x-www-form-urlencoded")
in the interface which has the method declarations.