如何使用 Apache Camel 进行授权?
我必须发出 POST 请求
curl -X POST --data-binary @auth.json http://somehost.com/auth
{
"response": {
"status": "OK",
"token": "622cee5f8c99c81e87614e9efc63eddb"
}
}
,这将返回带有令牌的 JSON 响应。 auth.json 是一个包含登录名和密码的 JSON 文件。然后我有两个选择:将令牌作为“Authorization:TOKEN”放入将来请求的标头中,或者将其放入 cookie 中并发出其他请求。 我怎样才能用 Apache Camel 做到这一点?如何接收 HTTP 响应?我把令牌放在哪里? 现在我有:
public static void main(String args[]) throws Exception {
CamelContext context = new DefaultCamelContext();
context.addRoutes(new RouteBuilder() {
public void configure() {
from("file:data/inbox?noop=true")
.to("http://somehost.com/auth");
}
});
context.start();
Thread.sleep(10000);
context.stop();
} 我在 ./data/inbox 中有 auth.json 文件
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您在 Apache Camel 邮件列表上发布了相同的问题,我提供了 答案在那里。
总结一下:只需在发送 http 请求之前在路由中调用
setHeader("Authorization",constant("622cee5f8c99c81e87614e9efc63eddb"))
即可。 Camel 会自动将此标头转换为特定于传输的(在本例中为 HTTP)标头。当然,您不需要在路由中提供常量令牌,您可以使用 Camel 表达式 或处理器。您的完整路线将类似于:
Since you posted the same question on the Apache Camel mailing list I've provided an answer there.
To summarize: Just call
setHeader("Authorization", constant("622cee5f8c99c81e87614e9efc63eddb"))
in your route before sending the http request. Camel will automatically translate this header to a transport specific (in this case HTTP) header. Of course you don't need to provide a constant token in your route, you can dynamically calculate or lookup the token by using a Camel expression or processor.Your complete route will look something like: