diff --git a/navi-ap/src/main/kotlin/com/navi/ap/network/retrofit/RetrofitService.kt b/navi-ap/src/main/kotlin/com/navi/ap/network/retrofit/RetrofitService.kt index 7d2ddf17b9..25077b3fff 100644 --- a/navi-ap/src/main/kotlin/com/navi/ap/network/retrofit/RetrofitService.kt +++ b/navi-ap/src/main/kotlin/com/navi/ap/network/retrofit/RetrofitService.kt @@ -33,6 +33,8 @@ interface RetrofitService { @Header("X-APPLICATION-TYPE") applicationType: String, @Header("X-VERTICAL-TYPE") verticalType: String, @Header("X-Target") target: String = ModuleName.AP.name, + @Header("Accept-Encoding") acceptEncoding: String = "gzip", + ): Response> @POST("/arc-warden/api/v2/application/{applicationId}/screen") @@ -51,6 +53,7 @@ interface RetrofitService { @Header("X-APPLICATION-TYPE") applicationType: String, @Header("X-VERTICAL-TYPE") verticalType: String, @Header("X-Target") target: String = ModuleName.AP.name, + @Header("Accept-Encoding") acceptEncoding: String = "gzip", ): Response> @POST("/arc-warden/api/v2/application") @@ -59,6 +62,7 @@ interface RetrofitService { @Header("X-APPLICATION-TYPE") applicationType: String, @Header("X-VERTICAL-TYPE") verticalType: String, @Header("X-Target") target: String = ModuleName.AP.name, + @Header("Accept-Encoding") acceptEncoding: String = "gzip", ): Response> @GET("/arc-warden/api/v2/application/{applicationId}/screen") @@ -70,6 +74,7 @@ interface RetrofitService { @Header("X-APPLICATION-TYPE") applicationType: String, @Header("X-VERTICAL-TYPE") verticalType: String, @Header("X-Target") target: String = ModuleName.AP.name, + @Header("Accept-Encoding") acceptEncoding: String = "gzip", ): Response> @GET("/application-platform/application/{applicationId}/end-routing")