您好,登錄后才能下訂單哦!
怎么在Retrofit2.0中添加Header?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
(1)使用注解的方式添加一個header參數
public interface ApiService { @Headers("Cache-Control: max-age=560000") @GET("/data") Call<List<Data>> getData(); }
(2)使用注解的方式添加多個header參數
public interface ApiService { @Headers({ "Accept: application/vnd.yourapi.v1.full+json", "User-Agent: YourAppName" }) @GET("/data/{user_id}") Call<Data> getData(@Path("user_id") long userId); }
(3)使用注解的方式,header參數每次都不同,動態添加header
public interface ApiService { @GET("/data") Call<List<Data>> getData(@Header("Content-Range") String contentRange); }
(4)在代碼里添加header,需要使用攔截器
OkHttpClient.Builder client = new OkHttpClient.Builder(); client.addInterceptor(new Interceptor() { @Override public Response intercept(Interceptor.Chain chain) throws IOException { Request original = chain.request(); Request request = original.newBuilder() .header("User-Agent", "YourAppName") .header("Accept", "application/vnd.yourapi.v1.full+json") .method(original.method(), original.body()) .build(); return chain.proceed(request); } } OkHttpClient httpClient = client.build(); Retrofit retrofit = new Retrofit.Builder() .baseUrl(Constant.BASE_URL) .addConverterFactory(GsonConverterFactory.create()) .client(httpClient) .build();
看完上述內容,你們掌握怎么在Retrofit2.0中添加Header的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。