如何使用翻新的Android Studio发布参数?

时间:2019-01-28 10:40:14

标签: android post retrofit

我需要使用Retrofit发送一个带有Post Request的数组。在邮递员这样工作正常 enter image description here

但是在Android中,我无法发送正确的请求。请帮助我。

更新

我这样尝试:

 @POST("/api/friends")
fun getContactsList(@Header("Authorization") token String,@Query("phones[]") phones : Array<String>) : Single<List<Friends>>

1 个答案:

答案 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