改造@GET - 如何显示请求字符串?

2022-09-01 19:47:44

我正在开发一个Android应用程序,该应用程序使用Retrofit来创建一个宁静的客户端。为了调试网络调用,我想显示或转储实际被调用的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);
                    }
                });
            }

答案 1

call.request().url(),其中 的类型为 。callretrofit2.Call


答案 2

RetrofitError具有返回 URL 的方法。getUrl()

在回调中也有一个方法。ResponsegetUrl()

那,你也可以根据这个问题指定日志级别:

RestAdapter adapter = (new RestAdapter.Builder()).
//...
           setLogLevel(LogLevel.FULL).setLog(new AndroidLog("YOUR_LOG_TAG"))              

虽然基于文档,但应该做你需要的。LogLevel.BASIC

BASIC
Log only the request method and URL and the response status code and execution time.

推荐