在 Retrofit 2 中记录请求和响应
在 Retrofit 1 中,使用 setLog() 和setLogLevel()。然而,Retrofit 2 已经弃用了这些方法,让开发人员想知道如何正确记录网络流量。
使用 HttpLoggingInterceptor
解决方案在于 HttpLoggingInterceptor,可以添加它到 OkHttpClient 来记录请求和响应body:
HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor(); interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
接下来,使用添加了拦截器的 OkHttpClient 创建一个 Retrofit 对象:
OkHttpClient client = new OkHttpClient.Builder().addInterceptor(interceptor).build(); Retrofit retrofit = new Retrofit.Builder() .baseUrl(...) .client(client) .addConverterFactory(GsonConverterFactory.create()) .build();
将日志级别设置为 BODY 将提供类似于 setLogLevel 生成的详细日志(RestAdapter.LogLevel.FULL) in Retrofit 1.
解决ClassNotFoundException
如果遇到 java.lang.ClassNotFoundException,请确保logging-interceptor 的版本与您的 Retrofit 版本匹配。在某些情况下,较旧的 Retrofit 版本可能需要较早的日志记录拦截器版本。
以上是如何记录 Retrofit 2 请求和响应主体?的详细内容。更多信息请关注PHP中文网其他相关文章!