Adding header to all request with Retrofit 2(使用 Retrofit 2 向所有请求添加标头)
问题描述
Retrofit 2 的文档 说:
可以使用 OkHttp 拦截器指定需要添加到每个请求的标头.
Headers that need to be added to every request can be specified using an OkHttp interceptor.
使用以前的版本可以轻松完成,这里是相关的QA.
It can be done easily using the previous version, here's the related QA.
但是使用改造 2,我找不到类似 setRequestInterceptor
或 setInterceptor
方法可以应用于 Retrofit.Builder
对象.
But using retrofit 2, I couldn't find something like setRequestInterceptor
or setInterceptor
method that can be applied to Retrofit.Builder
object.
另外,OkHttp 中似乎没有 RequestInterceptor
了.Retrofit 的文档将我们引向 Interceptor 我不太明白如何使用它目的.
Also it seems that there's no RequestInterceptor
in OkHttp anymore. Retrofit's doc refers us to Interceptor that I didn't quite understand how to use it for this purpose.
我该怎么做?
推荐答案
OkHttpClient.Builder httpClient = new OkHttpClient.Builder();
httpClient.addInterceptor(new Interceptor() {
@Override
public Response intercept(Chain chain) throws IOException {
Request request = chain.request().newBuilder().addHeader("parameter", "value").build();
return chain.proceed(request);
}
});
Retrofit retrofit = new Retrofit.Builder().addConverterFactory(GsonConverterFactory.create()).baseUrl(url).client(httpClient.build()).build();
这篇关于使用 Retrofit 2 向所有请求添加标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 Retrofit 2 向所有请求添加标头
基础教程推荐
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01