1

如何为使用 Camel 中的 http4 组件发出的请求设置标头?我要连接的站点需要设置引荐来源网址。直接使用 HttpClient ,可以向请求中添加标头,但我看不出它在 Camel 中是如何公开的。

ETA:基于公认答案的工作示例:

 from("timer://foo?fixedRate=true&delay=0&period=300000")
      .setHeader("Referer", constant("https://example.com"))
      .to("https4://www.example.com")
4

1 回答 1

1

您应该能够将其设置为 Camel 路线中的标头(如果您使用它)

setHeader("referrer", constant("MyValue"))

尽管您的问题有点含糊,但您如何使用 Camel http4 组件发送请求。

于 2013-06-14T15:50:08.720 回答