การเพิ่มส่วนหัวของคำขอทั้งหมดด้วย Retrofit 2


130

เอกสารประกอบของ Retrofit 2 ระบุว่า:

ส่วนหัวที่ต้องเพิ่มให้กับทุกคำขอสามารถระบุได้โดยใช้ตัวสกัดกั้น OkHttp

สามารถทำได้อย่างง่ายดายโดยใช้เวอร์ชันก่อนหน้านี่คือ QA ที่เกี่ยวข้อง

แต่เมื่อใช้ชุดติดตั้งเพิ่ม 2 ฉันไม่พบสิ่งที่เหมือนsetRequestInterceptorหรือsetInterceptorวิธีที่สามารถใช้กับRetrofit.Builderวัตถุได้

ดูเหมือนว่าไม่มีRequestInterceptorในOkHttpอีกต่อไป เอกสารของ Retrofit อ้างถึงInterceptorซึ่งฉันไม่ค่อยเข้าใจวิธีใช้เพื่อจุดประสงค์นี้

ฉันจะทำเช่นนี้ได้อย่างไร?

คำตอบ:


202
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();

5
ในรุ่น retrofit2-beta3 จะแตกต่างกันเล็กน้อย ดูที่นี่: stackoverflow.com/questions/34973432/…
Ashkan Sarlak

เราจะยืนยันได้อย่างไรว่ามีการส่งส่วนหัวเหล่านี้ เมื่อฉันแก้ไขข้อบกพร่องในการโทรenqueueฉันไม่เห็นส่วนหัวเริ่มต้น
viper

ควรจะเป็นnew OkHttpClient.Builder()แทนnew OkHttpClient()
Wojtek

80

รุ่นติดตั้งเพิ่มเติมล่าสุดที่นี่ -> 2.1.0

แลมด้ารุ่น:

  builder.addInterceptor(chain -> {
    Request request = chain.request().newBuilder().addHeader("key", "value").build();
    return chain.proceed(request);
  });

เวอร์ชั่นยาวน่าเกลียด:

  builder.addInterceptor(new Interceptor() {
    @Override public Response intercept(Chain chain) throws IOException {
      Request request = chain.request().newBuilder().addHeader("key", "value").build();
      return chain.proceed(request);
    }
  });

เวอร์ชันเต็ม:

class Factory {

public static APIService create(Context context) {

  OkHttpClient.Builder builder = new OkHttpClient().newBuilder();
  builder.readTimeout(10, TimeUnit.SECONDS);
  builder.connectTimeout(5, TimeUnit.SECONDS);

  if (BuildConfig.DEBUG) {
    HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
    interceptor.setLevel(HttpLoggingInterceptor.Level.BASIC);
    builder.addInterceptor(interceptor);
  }

  builder.addInterceptor(chain -> {
    Request request = chain.request().newBuilder().addHeader("key", "value").build();
    return chain.proceed(request);
  });

  builder.addInterceptor(new UnauthorisedInterceptor(context));
  OkHttpClient client = builder.build();

  Retrofit retrofit =
      new Retrofit.Builder().baseUrl(APIService.ENDPOINT).client(client).addConverterFactory(GsonConverterFactory.create()).addCallAdapterFactory(RxJavaCallAdapterFactory.create()).build();

  return retrofit.create(APIService.class);
  }
}

ไฟล์ gradle (คุณต้องเพิ่มตัวสกัดกั้นการบันทึกหากคุณวางแผนที่จะใช้):

  //----- Retrofit
  compile 'com.squareup.retrofit2:retrofit:2.1.0'
  compile "com.squareup.retrofit2:converter-gson:2.1.0"
  compile "com.squareup.retrofit2:adapter-rxjava:2.1.0"
  compile 'com.squareup.okhttp3:logging-interceptor:3.4.0'

14

สำหรับการบันทึกคำขอและการตอบกลับของคุณคุณต้องมีตัวสกัดกั้นและสำหรับการตั้งค่าส่วนหัวที่คุณต้องการตัวสกัดกั้นนี่คือทางออกสำหรับการเพิ่มทั้งตัวสกัดกั้นพร้อมกันโดยใช้ชุดติดตั้งเพิ่มเติม 2.1

 public OkHttpClient getHeader(final String authorizationValue ) {
        HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
        interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
        OkHttpClient okClient = new OkHttpClient.Builder()
                .addInterceptor(interceptor)
                .addNetworkInterceptor(
                        new Interceptor() {
                            @Override
                            public Response intercept(Interceptor.Chain chain) throws IOException {
                                Request request = null;
                                if (authorizationValue != null) {
                                    Log.d("--Authorization-- ", authorizationValue);

                                    Request original = chain.request();
                                    // Request customization: add request headers
                                    Request.Builder requestBuilder = original.newBuilder()
                                            .addHeader("Authorization", authorizationValue);

                                    request = requestBuilder.build();
                                }
                                return chain.proceed(request);
                            }
                        })
                .build();
        return okClient;

    }

ตอนนี้ในออบเจ็กต์ชุดติดตั้งเพิ่มของคุณให้เพิ่มส่วนหัวนี้ในไคลเอนต์

Retrofit retrofit = new Retrofit.Builder()
                .baseUrl(url)
                .client(getHeader(authorizationValue))
                .addConverterFactory(GsonConverterFactory.create())
                .build();

12

ลองใช้ส่วนหัวประเภทนี้สำหรับ Retrofit 1.9 และ 2.0 สำหรับ Json Content Type

@Headers({"Accept: application/json"})
@POST("user/classes")
Call<playlist> addToPlaylist(@Body PlaylistParm parm);

คุณสามารถเพิ่มส่วนหัวได้อีกมากมายเช่น

@Headers({
        "Accept: application/json",
        "User-Agent: Your-App-Name",
        "Cache-Control: max-age=640000"
    })

เพิ่มในส่วนหัวแบบไดนามิก:

@POST("user/classes")
Call<ResponseModel> addToPlaylist(@Header("Content-Type") String content_type, @Body RequestModel req);

โทรหาคุณวิธีคือ

mAPI.addToPlayList("application/json", playListParam);

หรือ

ต้องการส่งผ่านทุกครั้งจากนั้นสร้างวัตถุ HttpClient ด้วย http Interceptor:

OkHttpClient httpClient = new OkHttpClient();
        httpClient.networkInterceptors().add(new Interceptor() {
            @Override
            public com.squareup.okhttp.Response intercept(Chain chain) throws IOException {
                Request.Builder requestBuilder = chain.request().newBuilder();
                requestBuilder.header("Content-Type", "application/json");
                return chain.proceed(requestBuilder.build());
            }
        });

จากนั้นเพิ่มไปยังวัตถุติดตั้งเพิ่มเติม

Retrofit retrofit = new Retrofit.Builder().baseUrl(BASE_URL).client(httpClient).build();

อัปเดตหากคุณใช้ Kotlin ลบสิ่ง { }อื่นจะไม่ทำงาน


2
จะสร้างส่วนหัวเดียวสำหรับคำขอทั้งหมดในอินเทอร์เฟซโดยไม่ต้องทำซ้ำได้อย่างไร
Evgenii Vorobei

คุณต้องเพิ่มใน HTTP Logging interceptor
Avinash Verma

6

ในกรณีของฉันaddInterceptor()ไม่ได้ทำงานเพื่อเพิ่มส่วนหัว HTTP addNetworkInterceptor()การร้องขอของฉันฉันมีกับการใช้งาน รหัสมีดังนี้:

OkHttpClient.Builder httpClient = new OkHttpClient.Builder();
httpClient.addNetworkInterceptor(new AddHeaderInterceptor());

และรหัสผู้สกัดกั้น:

public class AddHeaderInterceptor implements Interceptor {
    @Override
    public Response intercept(Chain chain) throws IOException {

        Request.Builder builder = chain.request().newBuilder();
        builder.addHeader("Authorization", "MyauthHeaderContent");

        return chain.proceed(builder.build());
    }
}

นี่และตัวอย่างอื่น ๆ เกี่ยวกับส่วนสำคัญนี้


5

หากคุณใช้เมธอด addInterceptor เพื่อเพิ่ม HttpLoggingInterceptor มันจะไม่บันทึกสิ่งที่เพิ่มโดยตัวดักจับอื่น ๆ ที่นำมาใช้ภายหลังจาก HttpLoggingInterceptor

ตัวอย่างเช่นหากคุณมีตัวดักจับสองตัว "HttpLoggingInterceptor" และ "AuthInterceptor" และใช้ HttpLoggingInterceptor ก่อนคุณจะไม่สามารถดู http-params หรือส่วนหัวที่กำหนดโดย AuthInterceptor

OkHttpClient.Builder builder = new OkHttpClient.Builder()
.addNetworkInterceptor(logging)
.addInterceptor(new AuthInterceptor());

ฉันแก้ไขโดยใช้เมธอด addNetworkInterceptor


1
คุณยังสามารถเพิ่มHttpLoggingInterceptorเป็นตัวสกัดกั้นสุดท้ายเพื่อดูคำขอสุดท้าย
Micer

2

ใช้ Retrofit Client นี้

class RetrofitClient2(context: Context) : OkHttpClient() {

    private var mContext:Context = context
    private var retrofit: Retrofit? = null

    val client: Retrofit?
        get() {
            val logging = HttpLoggingInterceptor().setLevel(HttpLoggingInterceptor.Level.BODY)

            val client = OkHttpClient.Builder()
                    .connectTimeout(Constants.TIME_OUT, TimeUnit.SECONDS)
                    .readTimeout(Constants.TIME_OUT, TimeUnit.SECONDS)
                    .writeTimeout(Constants.TIME_OUT, TimeUnit.SECONDS)
            client.addInterceptor(logging)
            client.interceptors().add(AddCookiesInterceptor(mContext))

            val gson = GsonBuilder().setDateFormat("yyyy-MM-dd'T'HH:mm:ssZ").create()
            if (retrofit == null) {

                retrofit = Retrofit.Builder()
                        .baseUrl(Constants.URL)
                        .addConverterFactory(GsonConverterFactory.create(gson))
                        .client(client.build())
                        .build()
            }
            return retrofit
        }
}

ฉันผ่าน JWT พร้อมกับทุกคำขอ โปรดอย่าสนใจชื่อตัวแปรมันสับสนเล็กน้อย

class AddCookiesInterceptor(context: Context) : Interceptor {
    val mContext: Context = context
    @Throws(IOException::class)
    override fun intercept(chain: Interceptor.Chain): Response {
        val builder = chain.request().newBuilder()
        val preferences = CookieStore().getCookies(mContext)
        if (preferences != null) {
            for (cookie in preferences!!) {
                builder.addHeader("Authorization", cookie)
            }
        }
        return chain.proceed(builder.build())
    }
}

1

ใน kotlin การเพิ่ม interceptor มีลักษณะดังนี้:

.addInterceptor{ it.proceed(it.request().newBuilder().addHeader("Cache-Control", "no-store").build())}

0

RetrofitHelperไลบรารีที่เขียนด้วย kotlin จะช่วยให้คุณสามารถเรียก API ได้โดยใช้โค้ดไม่กี่บรรทัด

เพิ่มส่วนหัวในคลาสแอปพลิเคชันของคุณดังนี้:

class Application : Application() {

    override fun onCreate() {
    super.onCreate()

        retrofitClient = RetrofitClient.instance
                    //api url
                .setBaseUrl("https://reqres.in/")
                    //you can set multiple urls
        //                .setUrl("example","http://ngrok.io/api/")
                    //set timeouts
                .setConnectionTimeout(4)
                .setReadingTimeout(15)
                    //enable cache
                .enableCaching(this)
                    //add Headers
                .addHeader("Content-Type", "application/json")
                .addHeader("client", "android")
                .addHeader("language", Locale.getDefault().language)
                .addHeader("os", android.os.Build.VERSION.RELEASE)
            }

        companion object {
        lateinit var retrofitClient: RetrofitClient

        }
    }  

จากนั้นโทรออก:

retrofitClient.Get<GetResponseModel>()
            //set path
            .setPath("api/users/2")
            //set url params Key-Value or HashMap
            .setUrlParams("KEY","Value")
            // you can add header here
            .addHeaders("key","value")
            .setResponseHandler(GetResponseModel::class.java,
                object : ResponseHandler<GetResponseModel>() {
                    override fun onSuccess(response: Response<GetResponseModel>) {
                        super.onSuccess(response)
                        //handle response
                    }
                }).run(this)

สำหรับข้อมูลเพิ่มเติมโปรดดูเอกสาร


0

เวอร์ชั่น Kotlin จะเป็น

fun getHeaderInterceptor():Interceptor{
    return object : Interceptor {
        @Throws(IOException::class)
        override fun intercept(chain: Interceptor.Chain): Response {
            val request =
            chain.request().newBuilder()
                    .header(Headers.KEY_AUTHORIZATION, "Bearer.....")
                    .build()
            return chain.proceed(request)
        }
    }
}


private fun createOkHttpClient(): OkHttpClient {
    return OkHttpClient.Builder()
            .apply {
                if(BuildConfig.DEBUG){
                    this.addInterceptor(HttpLoggingInterceptor().setLevel(HttpLoggingInterceptor.Level.BASIC))
                }
            }
            .addInterceptor(getHeaderInterceptor())
            .build()
}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.