Wolfram Language Paclet Repository

Community-contributed installable additions to the Wolfram Language

Primary Navigation

    • Cloud & Deployment
    • Core Language & Structure
    • Data Manipulation & Analysis
    • Engineering Data & Computation
    • External Interfaces & Connections
    • Financial Data & Computation
    • Geographic Data & Computation
    • Geometry
    • Graphs & Networks
    • Higher Mathematical Computation
    • Images
    • Knowledge Representation & Natural Language
    • Machine Learning
    • Notebook Documents & Presentation
    • Scientific and Medical Data & Computation
    • Social, Cultural & Linguistic Data
    • Strings & Text
    • Symbolic & Numeric Computation
    • System Operation & Setup
    • Time-Related Computation
    • User Interface Construction
    • Visualization & Graphics
    • Random Paclet
    • Alphabetical List
  • Using Paclets
    • Get Started
    • Download Definition Notebook
  • Learn More about Wolfram Language

TelegramBot

Guides

  • TelegramBot Guide

Symbols

  • CreateBotSession
  • DeployBotWebhook
  • getMe
  • getUpdates
  • HandleBotUpdates
  • ImportTelegramFile
  • Object
  • sendMessage
  • sendPhoto
  • TelegramBot
KirillBelov`TelegramBot`
TelegramBot
​
TelegramBot
[token]
telegram bot representation
​
Details and Options

Examples  
(3)
Basic Examples  
(1)
For the creating a bot, you need to pass only one parameter - a bot token:
In[1]:=
bot=
TelegramBot
["1247031088:AAGW73yzggrm4Tr7bldGCCaIrrwISNsdDzg"]
Out[1]=
TelegramBot
Name: WolframKernelBot

The result is a mutable object that contains brief information about the bot. You can get all the currently available properties of an object by accessing the property named "Properties":
In[2]:=
bot["Properties"]
Out[2]=
{Token,History,Logger,Properties,Name,Icon}
For any of the obtained properties, you can get the internal data of this object:
In[3]:=
bot["Name"]​​bot["Icon"]
Out[3]=
WolframKernelBot
Out[3]=
You can also add a new property:
In[4]:=
bot["Creator"]="Kirill Belov"
Out[4]=
Kirill Belov
The new property will now be added to the list of available properties:
In[5]:=
bot["Properties"]
Out[5]=
{Token,History,Logger,Properties,Name,Icon,Creator}
And will also be added to the autocompletion list:
Options  
(2)

SeeAlso
DeployBotWebhook
RelatedGuides
▪
TelegramBot Guide
RelatedLinks
https://core.telegram.org/bots/api#authorizing-your-bot
""

© 2025 Wolfram. All rights reserved.

  • Legal & Privacy Policy
  • Contact Us
  • WolframAlpha.com
  • WolframCloud.com