使用Retrofit 2,您可以在服务方法的注释中设置完整的URL,例如:
public interface APIService {
@GET("http://api.mysite.com/user/list")
Call<Users> getUsers();
}
但是,在我的应用程序中,我的Web服务的URL在编译时未知,该应用程序在下载的文件中检索它们,因此我想知道如何将Retrofit 2与完整的动态URL结合使用。
我试图设置一个完整的路径,如:
public interface APIService {
@GET("{fullUrl}")
Call<Users> getUsers(@Path("fullUrl") fullUrl);
}
new Retrofit.Builder()
.baseUrl("http://api.mysite.com/")
.build()
.create(APIService.class)
.getUsers("http://api.mysite.com/user/list"); // this url should be dynamic
.execute();
但是在这里,Retrofit并未看到该路径实际上是完整的URL,而是试图下载 http://api.mysite.com/http%3A%2F%2Fapi.mysite.com%2Fuser%2Flist
关于如何将Retrofit与此类动态url一起使用的任何提示?
谢谢
5
对于将来的搜索者,有一个带有翻新
—
peitek