如何设置使用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")
答案 0 :(得分:1)
你应该能够将它设置为Camel路线中的标题(如果你使用它)
setHeader("referrer", constant("MyValue"))
虽然您使用Camel http4组件发送请求的问题有点过于模糊。