我需要使用Retrofit发送一个带有Post Request的数组。在邮递员这样工作正常
但是在Android中,我无法发送正确的请求。请帮助我。
更新
我这样尝试:
@POST("/api/friends")
fun getContactsList(@Header("Authorization") token String,@Query("phones[]") phones : Array<String>) : Single<List<Friends>>
答案 0 :(得分:1)
我认为您可以尝试以下方法:
@POST("http://server/service")
Call<YourModel> postSomething(@Query("phones") List<String> array);
生成的网址应如下所示:
http://server/service?phones=123&phones=345&phones=567&phones=789