Go to documentation repository
The TELEGRAM object corresponds to the Telegram bot system object.
The TELEGRAM object sends events presented in the table. The procedure is started when the corresponding event occurs. The format of the event procedure for a mail message.
OnEvent("TELEGRAM","_id_","_event_")
Event | Description | Comment |
ERROR | Message sending error | The error<> parameter contains the test description of the error |
The format of the operator to describe actions with a mail message:
DoReact("TELEGRAM","_id_","_command_" [,"_parameters_"]);
The list of commands and parameters for the TELEGRAM object is given in the table:
Command — command description | Parameters | Description |
SEND — send | text<> | Message text |
chat_id<> | Chat identifier | |
bot_id<> | Bot identifier | |
longtitude<> | Geolocation longtitude | |
latitude<> | Geolocation latitude | |
address<> | Geolocation text address | |
SENDPHOTO — send photo | photo<> | Full path to the image file |
caption<> | File caption | |
chat_id<> | Chat identifier | |
bot_id<> | Bot identifier | |
longtitude<> | Geolocation longtitude | |
latitude<> | Geolocation latitude | |
address<> | Geolocation text address |
Examples of calling the command for sending a message to Telegram using a macro:
OnEvent("MACRO","3","RUN") //run macro 3 { //Sending with chat_id & bot_id from object settings: DoReact("TELEGRAM",1,"SEND","text<Hello world>"); //Explicit setting chat_id & bot_id in the command: DoReact("TELEGRAM",1,"SEND","text<Hello world>,chat_id<828752651>,bot_id<809045046:AAGtKxtDWu5teRGKW_Li8wFBQuJ-l4A9h38>"); //Sending file with chat ID and bot ID: DoReact("TELEGRAM",1,"SENDPHOTO","caption<Hello world>,chat_id<828752651>,bot_id<809045046:AAGtKxtDWu5teRGKW_Li8wFBQuJ-l4A9h38>,photo<G:\\1.jpg>"); //Sending geolocation with chat ID and bot ID: DoReact("TELEGRAM",1,"SEND","text<Hello world>,chat_id<828752651>,bot_id<809045046:AAGtKxtDWu5teRGKW_Li8wFBQuJ-l4A9h38>",longtitude<37.3428359>,latitude<55.6841654>,address<ITV>); }