如何在Camel http4端点上设置HTTP标头

时间:2013-06-13 13:46:44

标签: apache-camel apache-httpclient-4.x

如何设置使用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")

1 个答案:

答案 0 :(得分:1)

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

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

虽然您使用Camel http4组件发送请求的问题有点过于模糊。