You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/10/21 12:47:29 UTC

[camel-kafka-connector-examples] branch master updated: Telegram Sink Example: Better Naming for Bot Authorization Token

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector-examples.git


The following commit(s) were added to refs/heads/master by this push:
     new 01ee272  Telegram Sink Example: Better Naming for Bot Authorization Token
01ee272 is described below

commit 01ee2721b45c41ad0c58e23633a81f6d6600dcc3
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Oct 21 14:47:09 2020 +0200

    Telegram Sink Example: Better Naming for Bot Authorization Token
---
 telegram/telegram-sink/README.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/telegram/telegram-sink/README.adoc b/telegram/telegram-sink/README.adoc
index 4bda931..99e8ef5 100644
--- a/telegram/telegram-sink/README.adoc
+++ b/telegram/telegram-sink/README.adoc
@@ -11,7 +11,7 @@ This is an example for Camel-Kafka-connector Telegram Sink
 
 ### Setting up Telegram Bot and get Chat id
 
-First of all create a telegram bot through the Bot Father channel in Telegram and take note of the BOT token.
+First of all create a telegram bot through the Bot Father channel in Telegram and take note of the BOT authorization token.
 Create a group Chat with yourself and the BOT just created, or add the BOT to an existing group Chat.
 If you are lazy you can invite also the RawDataBot BOT and take note of the group chatId.
 In this example we created the ApacheCamelBot BOT.
@@ -52,7 +52,7 @@ value.converter=org.apache.kafka.connect.storage.StringConverter
 
 topics=mytopic
 
-camel.sink.endpoint.authorizationToken=<bot_token>
+camel.sink.endpoint.authorizationToken=<bot_authorization_token>
 camel.sink.path.type=bots
 camel.sink.endpoint.chatId=<group_chat_id>
 ```