答案 0 :(得分:0)
似乎你想做这样的事情:
@GET("users/list?country={country}")
Call<List<Repo>> listRepos(@Path("country") String country);
您在调用函数时提供国家/地区代码
答案 1 :(得分:0)
试试这个:
@Documented
@Target(METHOD)
@Retention(RUNTIME)
public @interface GET {
//new
int Endpoints () default 1; (or use enum)
String value() default "";
}
答案 2 :(得分:0)
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("https://api.github.com/")
.build();
GitHubService service = retrofit.create(GitHubService.class);