例如,我们可以使用这个baseUrl:
https://www.Google.com
而这个电话:
public interface ExampleService { @GET("dummy/{examplePartialUrl}/") Call<JsonObject> exampleList(@Path("examplePartialUrl") String examplePartialUrl;}
有这个要求:
Call<JsonObject> mCall = dummyService.exampleList("partialDummy")
在从通话中获得响应之前,有办法获取https://www.Google.com/dummy/partialDummy或者dummy / partialDummy吗?
解决方法 假设您正在使用Okhttp和Retrofit,您可以执行以下 *** 作:dummyService.exampleList( “partialDummy”).请求().URL().的toString()
根据Okhttp文档应该打印:
https://www.Google.com/dummy/partialDummy
总结以上是内存溢出为你收集整理的android – Retrofit 2检查调用URL全部内容,希望文章能够帮你解决android – Retrofit 2检查调用URL所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)