如何在我进行 http post 调用时删除用户代理字符串?

How to remove User-Agent String when I make a http post call?

我想从我的 post http请求中删除 "User-Agent" 属性。

我正在使用 okhttpclient。

谁能帮我写一段代码?

这将为客户端发送的任何请求删除它。

  OkHttpClient client = new OkHttpClient.Builder()
      .addNetworkInterceptor(chain -> chain.proceed(chain.request().newBuilder()
          .removeHeader("user-agent")
          .build()))
      .build();