如何通过Retrofit将数组设置为请求中的参数?

时间:2015-11-28 01:11:52

标签: android retrofit

我需要通过Retrofit执行请求:

url = http://ENDPOINT_URL/users/77?expand=followers,image,followees

代码:

@GET(ENDPOINT_URL+"users/{user_id}?expand=" WHAT NEED PRESENT HERE???)
void getUserInfo(@Path("user_id) int userId, String... expand)

对于 userId ,我使用Path注释,但我如何对Retrofit说,我需要使用通过逗号分隔的数组项?

0 个答案:

没有答案