改造发布了一个请求,该请求在接口上没有声明任何参数,但是在Inteceptor中具有公共参数

时间:2019-01-22 02:12:44

标签: android retrofit okhttp3

这是示例代码:

public interface HttpInterface{
    @POST("http://www.test.com/test/1.0")
    Observable<BaseEntity<DataBean>> test();
}

HashMap<String, String> commonParams = new HashMap<>();
    commonParams.put("testkey", "testvalue");
    ParamsAddInterceptor paramsAddInterceptor = new 
ParamsAddInterceptor(commonParams);

RxRetrofitUtil.init(paramsAddInterceptor);


RxRetrofitUtil.getInstance()
.getHttpInterface(HttpInterface.class)
.test();

使用示例代码,在拦截器中添加的常见参数未在请求中添加

0 个答案:

没有答案