我正在开发一个使用Retrofit创建一个宁静客户端的Android应用程序。为了调试网络调用,我想显示或转储实际被调用的url。有没有办法做到这一点?我在下面添加了一些代码,其中显示了当前使用改造的应用程序。
客户端界面定义:
import retrofit.Callback;
import retrofit.http.Body;
import retrofit.http.GET;
import retrofit.http.Headers;
import retrofit.http.POST;
import retrofit.http.Path;
// etc...
public interface MyApiClient {
@Headers({
"Connection: close"
})
@GET("/{userId}/{itemId}/getCost.do")
public void get(@Path("userId") String userId, @Path("itemId") String userId, Callback<Score> callback);
//....etc
}
使用生成的客户端的服务:
// etc...
import javax.inject.Inject;
import retrofit.Callback;
import retrofit.RetrofitError;
import retrofit.client.Response;
@Inject
MyApiClient myApiClient;
// etc...
myApiClient.getCost(myId, itemId, new Callback<Cost>() {
@Override
public void success(Cost cost, Response response) {
Log.d("Success: %s", String.valueOf(cost.cost));
if (cost.cost != -1) {
processFoundCost(cost);
} else {
processMissingCost(itemId);
}
stopTask();
}
@Override
public void failure(RetrofitError error) {
handleFailure(new CostFailedEvent(), null);
}
});
}
答案 0 :(得分:42)
call.request().url()
,其中call
的类型为retrofit2.Call
。
答案 1 :(得分:8)
RetrofitError
有一个返回网址的getUrl()
方法。
此外,Response
在回调中也有getUrl()
方法。
那,您还可以根据this question指定日志级别:
RestAdapter adapter = (new RestAdapter.Builder()).
//...
setLogLevel(LogLevel.FULL).setLog(new AndroidLog("YOUR_LOG_TAG"))
虽然基于docs,LogLevel.BASIC
应该做你需要的。
BASIC
Log only the request method and URL and the response status code and execution time.
答案 2 :(得分:5)
是的,您可以通过调用RestAdapter上的setLogLevel()
启用调试日志记录。
我通常将日志记录设置为LogLevel.FULL
以获得调试版本,如下所示:
RestAdapter adapter = builder.setEndpoint("example.com")
.setLogLevel(BuildConfig.DEBUG ? RestAdapter.LogLevel.FULL : RestAdapter.LogLevel.NONE)
.build();
这将自动打印出与您的HTTP请求相关的所有信息,包括您要访问的URL,标题以及请求和响应的正文。