48.11. Webhook 模式
Telegram 组件支持使用 camel- webhook 组件在 Webhook 模式中使用。
要启用 webhook 模式,用户首先需要向其应用程序添加 REST 实现。例如,Maven 用户可将 netty-http 添加到 pom.xml
文件中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-netty-http</artifactId> <version>{CamelSBVersion}</version> <!-- use the same version as your Camel core version --> </dependency>
完成后,您需要将 webhook URI 添加到您要使用的 telegram URI 中。
在 Java DSL 中:
from("webhook:telegram:bots?authorizationToken=123456789:insertYourAuthorizationTokenHere").to("log:info");
有些端点将由您的应用程序公开,Telefgram 将配置为向其发送消息。您需要确保您的服务器可以公开到互联网,并传递 camel.component.webhook.configuration.webhook-external-url 属性的正确值。
有关如何设置它的说明,请参阅 camel-webhook 组件文档。