我需要通过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
说,我需要使用通过逗号分隔的数组项?