Android Retrofit: content type as application/x-www-form-urlencoded

前端 未结 3 1199
北荒
北荒 2020-12-13 01:27

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         


        
3条回答
  •  没有蜡笔的小新
    2020-12-13 02:05

    In the class where you define your service, modify the related method to follow the pattern below:

    @FormUrlEncoded
    @POST/GET/PUT/DELETE("/your_endpoint")
    Object yourMethodName(@Field("your_field") String yourField,...);
    

提交回复
热议问题