diff --git a/data/web/corefork.telegram.org/bots/api.html b/data/web/corefork.telegram.org/bots/api.html index 5c081cc088..bc8073fe9d 100644 --- a/data/web/corefork.telegram.org/bots/api.html +++ b/data/web/corefork.telegram.org/bots/api.html @@ -47,13 +47,14 @@ To learn how to create…">
--The Bot API is an HTTP-based interface created for developers keen on building bots for Telegram.
+
To learn how to create and set up a bot, please consult our Introduction to Bots and Bot FAQ.The Bot API is an HTTP-based interface created for developers keen on building bots for Telegram. +To learn how to create and set up a bot, please consult our Introduction to Bots and Bot FAQ.
-Subscribe to @BotNews to be the first to know about the latest updates and join the discussion in @BotTalk
Bot API 6.7
Bot API 6.6
Bot API 6.5
Each bot is given a unique authentication token when it is created. The token looks something like 123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11
, but we'll use simply <token> in this document instead. You can learn about obtaining tokens and generating new ones in this document.
Each bot is given a unique authentication token when it is created. The token looks something like 123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11
, but we'll use simply <token> in this document instead. You can learn about obtaining tokens and generating new ones in this document.
All queries to the Telegram Bot API must be served over HTTPS and need to be presented in this form: https://api.telegram.org/bot<token>/METHOD_NAME
. Like this for example:
https://api.telegram.org/bot123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11/getMe
We support GET and POST HTTP methods. We support four ways of passing parameters in Bot API requests:
@@ -118,17 +119,17 @@ To learn how to create…">The response contains a JSON object, which always has a Boolean field 'ok' and may have an optional String field 'description' with a human-readable description of the result. If 'ok' equals True, the request was successful and the result of the query can be found in the 'result' field. In case of an unsuccessful request, 'ok' equals false and the error is explained in the 'description'. An Integer 'error_code' field is also returned, but its contents are subject to change in the future. Some errors may also have an optional field 'parameters' of the type ResponseParameters, which can help to automatically handle the error.
+The response contains a JSON object, which always has a Boolean field 'ok' and may have an optional String field 'description' with a human-readable description of the result. If 'ok' equals True, the request was successful and the result of the query can be found in the 'result' field. In case of an unsuccessful request, 'ok' equals false and the error is explained in the 'description'. An Integer 'error_code' field is also returned, but its contents are subject to change in the future. Some errors may also have an optional field 'parameters' of the type ResponseParameters, which can help to automatically handle the error.
If you're using webhooks, you can perform a request to the Bot API while sending an answer to the webhook. Use either application/json or application/x-www-form-urlencoded or multipart/form-data response content type for passing parameters. Specify the method to be invoked in the method parameter of the request. It's not possible to know that such a request was successful or get its result.
+If you're using webhooks, you can perform a request to the Bot API while sending an answer to the webhook. Use either application/json or application/x-www-form-urlencoded or multipart/form-data response content type for passing parameters. Specify the method to be invoked in the method parameter of the request. It's not possible to know that such a request was successful or get its result.
-Please see our FAQ for examples.
The Bot API server source code is available at telegram-bot-api. You can run it locally and send the requests to your own server instead of https://api.telegram.org
. If you switch to a local Bot API server, your bot will be able to:
The majority of bots will be OK with the default configuration, running on our servers. But if you feel that you need one of these features, you're welcome to switch to your own at any time.
-The majority of bots will be OK with the default configuration, running on our servers. But if you feel that you need one of these features, you're welcome to switch to your own at any time.
+There are two mutually exclusive ways of receiving updates for your bot - the getUpdates method on one hand and webhooks on the other. Incoming updates are stored on the server until the bot receives them either way, but they will not be kept longer than 24 hours.
Regardless of which option you choose, you will receive JSON-serialized Update objects as a result.
-This object represents an incoming update.
At most one of the optional parameters can be present in any given update.
This object represents an incoming update. +At most one of the optional parameters can be present in any given update.
update_id | Integer | -The update's unique identifier. Update identifiers start from a certain positive number and increase sequentially. This ID becomes especially handy if you're using webhooks, since it allows you to ignore repeated updates or to restore the correct update sequence, should they get out of order. If there are no new updates for at least a week, then identifier of the next update will be chosen randomly instead of sequentially. | +The update's unique identifier. Update identifiers start from a certain positive number and increase sequentially. This ID becomes especially handy if you're using webhooks, since it allows you to ignore repeated updates or to restore the correct update sequence, should they get out of order. If there are no new updates for at least a week, then identifier of the next update will be chosen randomly instead of sequentially. |
message | @@ -219,12 +221,12 @@ To learn how to create…">|||
my_chat_member | ChatMemberUpdated | -Optional. The bot's chat member status was updated in a chat. For private chats, this update is received only when the bot is blocked or unblocked by the user. | +Optional. The bot's chat member status was updated in a chat. For private chats, this update is received only when the bot is blocked or unblocked by the user. |
chat_member | ChatMemberUpdated | -Optional. A chat member's status was updated in a chat. The bot must be an administrator in the chat and must explicitly specify “chat_member” in the list of allowed_updates to receive these updates. | +Optional. A chat member's status was updated in a chat. The bot must be an administrator in the chat and must explicitly specify "chat_member" in the list of allowed_updates to receive these updates. |
chat_join_request | @@ -233,7 +235,7 @@ To learn how to create…">
Use this method to receive incoming updates using long polling (wiki). Returns an Array of Update objects.
allowed_updates | Array of String | Optional | -A JSON-serialized list of the update types you want your bot to receive. For example, specify [“message”, “edited_channel_post”, “callback_query”] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all update types except chat_member (default). If not specified, the previous setting will be used. Please note that this parameter doesn't affect updates created before the call to the getUpdates, so unwanted updates may be received for a short period of time. |
+A JSON-serialized list of the update types you want your bot to receive. For example, specify ["message", "edited_channel_post", "callback_query"] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all update types except chat_member (default). If not specified, the previous setting will be used. Please note that this parameter doesn't affect updates created before the call to the getUpdates, so unwanted updates may be received for a short period of time. |
--Notes
+
1. This method will not work if an outgoing webhook is set up.
2. In order to avoid getting duplicate updates, recalculate offset after each server response.Notes +1. This method will not work if an outgoing webhook is set up. +2. In order to avoid getting duplicate updates, recalculate offset after each server response.
Use this method to specify a URL and receive incoming updates via an outgoing webhook. Whenever there is an update for the bot, we will send an HTTPS POST request to the specified URL, containing a JSON-serialized Update. In case of an unsuccessful request, we will give up after a reasonable amount of attempts. Returns True on success.
-If you'd like to make sure that the webhook was set by you, you can specify secret data in the parameter secret_token. If specified, the request will contain a header “X-Telegram-Bot-Api-Secret-Token” with the secret token as content.
+If you'd like to make sure that the webhook was set by you, you can specify secret data in the parameter secret_token. If specified, the request will contain a header "X-Telegram-Bot-Api-Secret-Token" with the secret token as content.
max_connections | Integer | Optional | -The maximum allowed number of simultaneous HTTPS connections to the webhook for update delivery, 1-100. Defaults to 40. Use lower values to limit the load on your bot's server, and higher values to increase your bot's throughput. | +The maximum allowed number of simultaneous HTTPS connections to the webhook for update delivery, 1-100. Defaults to 40. Use lower values to limit the load on your bot's server, and higher values to increase your bot's throughput. | |
allowed_updates | Array of String | Optional | -A JSON-serialized list of the update types you want your bot to receive. For example, specify [“message”, “edited_channel_post”, “callback_query”] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all update types except chat_member (default). If not specified, the previous setting will be used. Please note that this parameter doesn't affect updates created before the call to the setWebhook, so unwanted updates may be received for a short period of time. |
+A JSON-serialized list of the update types you want your bot to receive. For example, specify ["message", "edited_channel_post", "callback_query"] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all update types except chat_member (default). If not specified, the previous setting will be used. Please note that this parameter doesn't affect updates created before the call to the setWebhook, so unwanted updates may be received for a short period of time. |
|
drop_pending_updates | @@ -327,15 +331,20 @@ To learn how to create…">secret_token | String | Optional | -A secret token to be sent in a header “X-Telegram-Bot-Api-Secret-Token” in every webhook request, 1-256 characters. Only characters A-Z , a-z , 0-9 , _ and - are allowed. The header is useful to ensure that the request comes from a webhook set by you. |
+A secret token to be sent in a header "X-Telegram-Bot-Api-Secret-Token" in every webhook request, 1-256 characters. Only characters A-Z , a-z , 0-9 , _ and - are allowed. The header is useful to ensure that the request comes from a webhook set by you. |
--Notes
-
1. You will not be able to receive updates using getUpdates for as long as an outgoing webhook is set up.
2. To use a self-signed certificate, you need to upload your public key certificate using certificate parameter. Please upload as InputFile, sending a String will not work.
3. Ports currently supported for webhooks: 443, 80, 88, 8443.If you're having any trouble setting up webhooks, please check out this amazing guide to webhooks.
+Notes +1. You will not be able to receive updates using getUpdates for as long as an outgoing webhook is set up. +2. To use a self-signed certificate, you need to upload your public key certificate using certificate parameter. Please upload as InputFile, sending a String will not work. +3. Ports currently supported for webhooks: 443, 80, 88, 8443.
++If you're having any trouble setting up webhooks, please check out this amazing guide to webhooks.
+
Use this method to remove webhook integration if you decide to switch back to getUpdates. Returns True on success.
Use this method to get current webhook status. Requires no parameters. On success, returns a WebhookInfo object. If the bot is using getUpdates, will return an object with the url field empty.
-Describes the current status of a webhook.
All types used in the Bot API responses are represented as JSON-objects.
It is safe to use 32-bit signed integers for storing all Integer fields unless otherwise noted.
-Optional fields may be not returned when irrelevant.
This object represents a Telegram user or bot.
first_name | String | -User's or bot's first name | +User's or bot's first name |
last_name | String | -Optional. User's or bot's last name | +Optional. User's or bot's last name |
username | String | -Optional. User's or bot's username | +Optional. User's or bot's username |
language_code | String | -Optional. IETF language tag of the user's language | +Optional. IETF language tag of the user's language |
is_premium | @@ -489,7 +498,7 @@ To learn how to create…">
This object represents a chat.
type | String | -Type of chat, can be either “private”, “group”, “supergroup” or “channel” | +Type of chat, can be either "private", "group", "supergroup" or "channel" |
title | @@ -618,7 +627,7 @@ To learn how to create…">|||
has_protected_content | True | -Optional. True, if messages from the chat can't be forwarded to other chats. Returned only in getChat. | +Optional. True, if messages from the chat can't be forwarded to other chats. Returned only in getChat. |
sticker_set_name | @@ -642,7 +651,7 @@ To learn how to create…">
This object represents a message.
forward_sender_name | String | -Optional. Sender's name for messages forwarded from users who disallow adding a link to their account in forwarded messages | +Optional. Sender's name for messages forwarded from users who disallow adding a link to their account in forwarded messages |
forward_date | @@ -741,7 +750,7 @@ To learn how to create…">|||
has_protected_content | True | -Optional. True, if the message can't be forwarded | +Optional. True, if the message can't be forwarded |
media_group_id | @@ -881,12 +890,12 @@ To learn how to create…">|||
supergroup_chat_created | True | -Optional. Service message: the supergroup has been created. This field can't be received in a message coming through updates, because bot can't be a member of a supergroup when it is created. It can only be found in reply_to_message if someone replies to a very first message in a directly created supergroup. | +Optional. Service message: the supergroup has been created. This field can't be received in a message coming through updates, because bot can't be a member of a supergroup when it is created. It can only be found in reply_to_message if someone replies to a very first message in a directly created supergroup. |
channel_chat_created | True | -Optional. Service message: the channel has been created. This field can't be received in a message coming through updates, because bot can't be a member of a channel when it is created. It can only be found in reply_to_message if someone replies to a very first message in a channel. | +Optional. Service message: the channel has been created. This field can't be received in a message coming through updates, because bot can't be a member of a channel when it is created. It can only be found in reply_to_message if someone replies to a very first message in a channel. |
message_auto_delete_timer_changed | @@ -946,7 +955,7 @@ To learn how to create…">|||
proximity_alert_triggered | ProximityAlertTriggered | -Optional. Service message. A user in the chat triggered another user's proximity alert while sharing Live Location. | +Optional. Service message. A user in the chat triggered another user's proximity alert while sharing Live Location. |
forum_topic_created | @@ -971,12 +980,12 @@ To learn how to create…">|||
general_forum_topic_hidden | GeneralForumTopicHidden | -Optional. Service message: the 'General' forum topic hidden | +Optional. Service message: the 'General' forum topic hidden |
general_forum_topic_unhidden | GeneralForumTopicUnhidden | -Optional. Service message: the 'General' forum topic unhidden | +Optional. Service message: the 'General' forum topic unhidden |
video_chat_scheduled | @@ -1010,7 +1019,7 @@ To learn how to create…">
This object represents a unique message identifier.
This object represents one special entity in a text message. For example, hashtags, usernames, URLs, etc.
type | String | -Type of the entity. Currently, can be “mention” (@username ), “hashtag” (#hashtag ), “cashtag” ($USD ), “bot_command” (/start@jobs_bot ), “url” (https://telegram.org ), “email” (do-not-reply@telegram.org ), “phone_number” (+1-212-555-0123 ), “bold” (bold text), “italic” (italic text), “underline” (underlined text), “strikethrough” (strikethrough text), “spoiler” (spoiler message), “code” (monowidth string), “pre” (monowidth block), “text_link” (for clickable text URLs), “text_mention” (for users without usernames), “custom_emoji” (for inline custom emoji stickers) |
+Type of the entity. Currently, can be "mention" (@username ), "hashtag" (#hashtag ), "cashtag" ($USD ), "bot_command" (/start@jobs_bot ), "url" (https://telegram.org ), "email" (do-not-reply@telegram.org ), "phone_number" (+1-212-555-0123 ), "bold" (bold text), "italic" (italic text), "underline" (underlined text), "strikethrough" (strikethrough text), "spoiler" (spoiler message), "code" (monowidth string), "pre" (monowidth block), "text_link" (for clickable text URLs), "text_mention" (for users without usernames), "custom_emoji" (for inline custom emoji stickers) |
offset | @@ -1057,26 +1066,26 @@ To learn how to create…">|||
url | String | -Optional. For “text_link” only, URL that will be opened after user taps on the text | +Optional. For "text_link" only, URL that will be opened after user taps on the text |
user | User | -Optional. For “text_mention” only, the mentioned user | +Optional. For "text_mention" only, the mentioned user |
language | String | -Optional. For “pre” only, the programming language of the entity text | +Optional. For "pre" only, the programming language of the entity text |
custom_emoji_id | String | -Optional. For “custom_emoji” only, unique identifier of the custom emoji. Use getCustomEmojiStickers to get full information about the sticker | +Optional. For "custom_emoji" only, unique identifier of the custom emoji. Use getCustomEmojiStickers to get full information about the sticker |
This object represents one size of a photo or a file / sticker thumbnail.
file_unique_id | String | -Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. | +Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. |
width | @@ -1114,7 +1123,7 @@ To learn how to create…">
This object represents an animation file (GIF or H.264/MPEG-4 AVC video without sound).
file_unique_id | String | -Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. | +Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. |
width | @@ -1172,7 +1181,7 @@ To learn how to create…">
This object represents an audio file to be treated as music by the Telegram clients.
file_unique_id | String | -Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. | +Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. |
duration | @@ -1230,7 +1239,7 @@ To learn how to create…">
This object represents a general file (as opposed to photos, voice messages and audio files).
file_unique_id | String | -Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. | +Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. |
thumbnail | @@ -1273,7 +1282,7 @@ To learn how to create…">
This object represents a video file.
file_unique_id | String | -Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. | +Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. |
width | @@ -1331,7 +1340,7 @@ To learn how to create…">
This object represents a video message (available in Telegram apps as of v.4.0).
file_unique_id | String | -Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. | +Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. |
length | @@ -1374,7 +1383,7 @@ To learn how to create…">
This object represents a voice note.
file_unique_id | String | -Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. | +Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. |
duration | @@ -1412,7 +1421,7 @@ To learn how to create…">
This object represents a phone contact.
phone_number | String | -Contact's phone number | +Contact's phone number |
first_name | String | -Contact's first name | +Contact's first name |
last_name | String | -Optional. Contact's last name | +Optional. Contact's last name |
user_id | Integer | -Optional. Contact's user identifier in Telegram. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a 64-bit integer or double-precision float type are safe for storing this identifier. | +Optional. Contact's user identifier in Telegram. This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects in interpreting it. But it has at most 52 significant bits, so a 64-bit integer or double-precision float type are safe for storing this identifier. |
vcard | @@ -1450,7 +1459,7 @@ To learn how to create…">
This object represents an animated emoji that displays a random value.
value | Integer | -Value of the dice, 1-6 for “”, “” and “” base emoji, 1-5 for “” and “” base emoji, 1-64 for “” base emoji | +Value of the dice, 1-6 for "", "" and "" base emoji, 1-5 for "" and "" base emoji, 1-64 for "" base emoji |
This object contains information about one answer option in a poll.
This object represents an answer of a user in a non-anonymous poll.
This object contains information about a poll.
type | String | -Poll type, currently can be “regular” or “quiz” | +Poll type, currently can be "regular" or "quiz" |
allows_multiple_answers | @@ -1602,7 +1611,7 @@ To learn how to create…">
This object represents a point on the map.
This object represents a venue.
location | Location | -Venue location. Can't be a live location | +Venue location. Can't be a live location |
title | @@ -1679,7 +1688,7 @@ To learn how to create…">|||
foursquare_type | String | -Optional. Foursquare type of the venue. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.) | +Optional. Foursquare type of the venue. (For example, "arts_entertainment/default", "arts_entertainment/aquarium" or "food/icecream".) |
google_place_id | @@ -1693,7 +1702,7 @@ To learn how to create…">
Describes data sent from a Web App to the bot.
This object represents the content of a service message, sent whenever a user in the chat triggers a proximity alert set by another user.
This object represents a service message about a change in auto-delete timer settings.
This object represents a service message about a new forum topic created in the chat.
This object represents a service message about a forum topic closed in the chat. Currently holds no information.
-This object represents a service message about an edited forum topic.
This object represents a service message about a forum topic reopened in the chat. Currently holds no information.
-This object represents a service message about General forum topic hidden in the chat. Currently holds no information.
-This object represents a service message about General forum topic unhidden in the chat. Currently holds no information.
-This object contains information about the user whose identifier was shared with the bot using a KeyboardButtonRequestUser button.
This object contains information about the chat whose identifier was shared with the bot using a KeyboardButtonRequestChat button.
This object represents a service message about a user allowing a bot to write messages after adding the bot to the attachment menu or launching a Web App from a link.
This object represents a service message about a video chat scheduled in the chat.
This object represents a service message about a video chat started in the chat. Currently holds no information.
-This object represents a service message about a video chat ended in the chat.
This object represents a service message about new members invited to a video chat.
This object represent a user's profile pictures.
+This object represent a user's profile pictures.
This object represents a file ready to be downloaded. The file can be downloaded via the link https://api.telegram.org/file/bot<token>/<file_path>
. It is guaranteed that the link will be valid for at least 1 hour. When the link expires, a new one can be requested by calling getFile.
The maximum file size to download is 20 MB
@@ -1986,7 +1995,7 @@ To learn how to create…">file_unique_id String -Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. +Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. - file_size @@ -2000,7 +2009,7 @@ To learn how to create…">WebAppInfo
+WebAppInfo
Describes a Web App.
@@ -2018,7 +2027,7 @@ To learn how to create…">
-ReplyKeyboardMarkup
+ReplyKeyboardMarkup
This object represents a custom keyboard with reply options (see Introduction to bots for details and examples).
@@ -2042,12 +2051,12 @@ To learn how to create…">
-resize_keyboard Boolean -Optional. Requests clients to resize the keyboard vertically for optimal fit (e.g., make the keyboard smaller if there are just two rows of buttons). Defaults to false, in which case the custom keyboard is always of the same height as the app's standard keyboard. +Optional. Requests clients to resize the keyboard vertically for optimal fit (e.g., make the keyboard smaller if there are just two rows of buttons). Defaults to false, in which case the custom keyboard is always of the same height as the app's standard keyboard. one_time_keyboard Boolean -Optional. Requests clients to hide the keyboard as soon as it's been used. The keyboard will still be available, but clients will automatically display the usual letter-keyboard in the chat - the user can press a special button in the input field to see the custom keyboard again. Defaults to false. +Optional. Requests clients to hide the keyboard as soon as it's been used. The keyboard will still be available, but clients will automatically display the usual letter-keyboard in the chat - the user can press a special button in the input field to see the custom keyboard again. Defaults to false. input_field_placeholder @@ -2057,11 +2066,11 @@ To learn how to create…">selective Boolean -Optional. Use this parameter if you want to show the keyboard to specific users only. Targets: 1) users that are @mentioned in the text of the Message object; 2) if the bot's message is a reply (has reply_to_message_id), sender of the original message. +
Example: A user requests to change the bot's language, bot replies to the request with a keyboard to select the new language. Other users in the group don't see the keyboard.Optional. Use this parameter if you want to show the keyboard to specific users only. Targets: 1) users that are @mentioned in the text of the Message object; 2) if the bot's message is a reply (has reply_to_message_id), sender of the original message.
Example: A user requests to change the bot's language, bot replies to the request with a keyboard to select the new language. Other users in the group don't see the keyboard.KeyboardButton
+KeyboardButton
This object represents one button of the reply keyboard. For simple text buttons, String can be used instead of this object to specify the button text. The optional fields web_app, request_user, request_chat, request_contact, request_location, and request_poll are mutually exclusive.
@@ -2080,22 +2089,22 @@ To learn how to create…">
-request_user KeyboardButtonRequestUser -Optional. If specified, pressing the button will open a list of suitable users. Tapping on any user will send their identifier to the bot in a “user_shared” service message. Available in private chats only. +Optional. If specified, pressing the button will open a list of suitable users. Tapping on any user will send their identifier to the bot in a "user_shared" service message. Available in private chats only. request_chat KeyboardButtonRequestChat -Optional. If specified, pressing the button will open a list of suitable chats. Tapping on a chat will send its identifier to the bot in a “chat_shared” service message. Available in private chats only. +Optional. If specified, pressing the button will open a list of suitable chats. Tapping on a chat will send its identifier to the bot in a "chat_shared" service message. Available in private chats only. request_contact Boolean -Optional. If True, the user's phone number will be sent as a contact when the button is pressed. Available in private chats only. +Optional. If True, the user's phone number will be sent as a contact when the button is pressed. Available in private chats only. request_location Boolean -Optional. If True, the user's current location will be sent when the button is pressed. Available in private chats only. +Optional. If True, the user's current location will be sent when the button is pressed. Available in private chats only. request_poll @@ -2105,12 +2114,15 @@ To learn how to create…">web_app WebAppInfo -Optional. If specified, the described Web App will be launched when the button is pressed. The Web App will be able to send a “web_app_data” service message. Available in private chats only. +Optional. If specified, the described Web App will be launched when the button is pressed. The Web App will be able to send a "web_app_data" service message. Available in private chats only. Note: request_contact and request_location options will only work in Telegram versions released after 9 April, 2016. Older clients will display unsupported message.
-
Note: request_poll option will only work in Telegram versions released after 23 January, 2020. Older clients will display unsupported message.
Note: web_app option will only work in Telegram versions released after 16 April, 2022. Older clients will display unsupported message.
Note: request_user and request_chat options will only work in Telegram versions released after 3 February, 2023. Older clients will display unsupported message.KeyboardButtonRequestUser
+Note: request_contact and request_location options will only work in Telegram versions released after 9 April, 2016. Older clients will display unsupported message. +Note: request_poll option will only work in Telegram versions released after 23 January, 2020. Older clients will display unsupported message. +Note: web_app option will only work in Telegram versions released after 16 April, 2022. Older clients will display unsupported message. +Note: request_user and request_chat options will only work in Telegram versions released after 3 February, 2023. Older clients will display unsupported message.
+KeyboardButtonRequestUser
This object defines the criteria used to request a suitable user. The identifier of the selected user will be shared with the bot when the corresponding button is pressed. More about requesting users »
@@ -2138,7 +2150,7 @@ To learn how to create…">
-KeyboardButtonRequestChat
+KeyboardButtonRequestChat
This object defines the criteria used to request a suitable chat. The identifier of the selected chat will be shared with the bot when the corresponding button is pressed. More about requesting chats »
@@ -2191,7 +2203,7 @@ To learn how to create…">
-KeyboardButtonPollType
+KeyboardButtonPollType
This object represents type of a poll, which is allowed to be created and sent when the corresponding button is pressed.
@@ -2209,7 +2221,7 @@ To learn how to create…">
-ReplyKeyboardRemove
+ReplyKeyboardRemove
Upon receiving a message with this object, Telegram clients will remove the current custom keyboard and display the default letter-keyboard. By default, custom keyboards are displayed until a new keyboard is sent by a bot. An exception is made for one-time keyboards that are hidden immediately after the user presses a button (see ReplyKeyboardMarkup).
@@ -2228,11 +2240,11 @@ To learn how to create…">
-selective Boolean -Optional. Use this parameter if you want to remove the keyboard for specific users only. Targets: 1) users that are @mentioned in the text of the Message object; 2) if the bot's message is a reply (has reply_to_message_id), sender of the original message. +
Example: A user votes in a poll, bot returns confirmation message in reply to the vote and removes the keyboard for that user, while still showing the keyboard with poll options to users who haven't voted yet.Optional. Use this parameter if you want to remove the keyboard for specific users only. Targets: 1) users that are @mentioned in the text of the Message object; 2) if the bot's message is a reply (has reply_to_message_id), sender of the original message.
Example: A user votes in a poll, bot returns confirmation message in reply to the vote and removes the keyboard for that user, while still showing the keyboard with poll options to users who haven't voted yet.InlineKeyboardMarkup
+InlineKeyboardMarkup
This object represents an inline keyboard that appears right next to the message it belongs to.
@@ -2251,7 +2263,7 @@ To learn how to create…">
Note: This will only work in Telegram versions released after 9 April, 2016. Older clients will display unsupported message.
-InlineKeyboardButton
+InlineKeyboardButton
This object represents one button of an inline keyboard. You must use exactly one of the optional fields.
@@ -2290,17 +2302,17 @@ To learn how to create…">
-switch_inline_query String -Optional. If set, pressing the button will prompt the user to select one of their chats, open that chat and insert the bot's username and the specified inline query in the input field. May be empty, in which case just the bot's username will be inserted. +Optional. If set, pressing the button will prompt the user to select one of their chats, open that chat and insert the bot's username and the specified inline query in the input field. May be empty, in which case just the bot's username will be inserted. switch_inline_query_current_chat String -Optional. If set, pressing the button will insert the bot's username and the specified inline query in the current chat's input field. May be empty, in which case only the bot's username will be inserted. +
This offers a quick way for the user to open your bot in inline mode in the same chat - good for selecting something from multiple options.Optional. If set, pressing the button will insert the bot's username and the specified inline query in the current chat's input field. May be empty, in which case only the bot's username will be inserted.
This offers a quick way for the user to open your bot in inline mode in the same chat - good for selecting something from multiple options.switch_inline_query_chosen_chat SwitchInlineQueryChosenChat -Optional. If set, pressing the button will prompt the user to select one of their chats of the specified type, open that chat and insert the bot's username and the specified inline query in the input field +Optional. If set, pressing the button will prompt the user to select one of their chats of the specified type, open that chat and insert the bot's username and the specified inline query in the input field callback_game @@ -2314,12 +2326,11 @@ To learn how to create…">LoginUrl
+LoginUrl
This object represents a parameter of the inline keyboard button used to automatically authorize a user. Serves as a great replacement for the Telegram Login Widget when the user is coming from Telegram. All the user needs to do is tap/click a button and confirm that they want to log in:
-Telegram apps support these buttons as of version 5.7.
Sample bot: @discussbot
@@ -2346,7 +2357,7 @@ To learn how to create…">bot_username String -Optional. Username of a bot, which will be used for user authorization. See Setting up a bot for more details. If not specified, the current bot's username will be assumed. The url's domain must be the same as the domain linked with the bot. See Linking your domain to the bot for more details. +Optional. Username of a bot, which will be used for user authorization. See Setting up a bot for more details. If not specified, the current bot's username will be assumed. The url's domain must be the same as the domain linked with the bot. See Linking your domain to the bot for more details. - request_write_access @@ -2355,7 +2366,7 @@ To learn how to create…">SwitchInlineQueryChosenChat
+SwitchInlineQueryChosenChat
This object represents an inline button that switches the current user to inline mode in a chosen chat, with an optional default inline query.
@@ -2369,7 +2380,7 @@ To learn how to create…">
-query String -Optional. The default inline query to be inserted in the input field. If left empty, only the bot's username will be inserted +Optional. The default inline query to be inserted in the input field. If left empty, only the bot's username will be inserted allow_user_chats @@ -2393,7 +2404,7 @@ To learn how to create…">CallbackQuery
+CallbackQuery
This object represents an incoming callback query from a callback button in an inline keyboard. If the button that originated the query was attached to a message sent by the bot, the field message will be present. If the button was attached to a message sent via the bot (in inline mode), the field inline_message_id will be present. Exactly one of the fields data or game_short_name will be present.
@@ -2444,8 +2455,8 @@ To learn how to create…">
--NOTE: After the user presses a callback button, Telegram clients will display a progress bar until you call answerCallbackQuery. It is, therefore, necessary to react by calling answerCallbackQuery even if no notification to the user is needed (e.g., without specifying any of the optional parameters).
ForceReply
-Upon receiving a message with this object, Telegram clients will display a reply interface to the user (act as if the user has selected the bot's message and tapped 'Reply'). This can be extremely useful if you want to create user-friendly step-by-step interfaces without having to sacrifice privacy mode.
+ForceReply
+Upon receiving a message with this object, Telegram clients will display a reply interface to the user (act as if the user has selected the bot's message and tapped 'Reply'). This can be extremely useful if you want to create user-friendly step-by-step interfaces without having to sacrifice privacy mode.
@@ -2476,11 +2487,11 @@ To learn how to create…">
@@ -2458,7 +2469,7 @@ To learn how to create…"> force_reply True -Shows reply interface to the user, as if they manually selected the bot's message and tapped 'Reply' +Shows reply interface to the user, as if they manually selected the bot's message and tapped 'Reply' input_field_placeholder @@ -2468,7 +2479,7 @@ To learn how to create…">selective Boolean -Optional. Use this parameter if you want to force reply from specific users only. Targets: 1) users that are @mentioned in the text of the Message object; 2) if the bot's message is a reply (has reply_to_message_id), sender of the original message. +Optional. Use this parameter if you want to force reply from specific users only. Targets: 1) users that are @mentioned in the text of the Message object; 2) if the bot's message is a reply (has reply_to_message_id), sender of the original message. Example: A poll bot for groups runs in privacy mode (only receives commands, replies to its messages and mentions). There could be two ways to create a new poll:
-
- Explain the user how to send a command with parameters (e.g. /newpoll question answer1 answer2). May be appealing for hardcore users but lacks modern day polish.
-- Guide the user through a step-by-step process. 'Please send me your question', 'Cool, now let's add the first answer option', 'Great. Keep adding answer options, then send /done when you're ready'.
+- Guide the user through a step-by-step process. 'Please send me your question', 'Cool, now let's add the first answer option', 'Great. Keep adding answer options, then send /done when you're ready'.
The last option is definitely more attractive. And if you use ForceReply in your bot's questions, it will receive the user's answers even if it only receives replies, commands and mentions - without any extra work for the user.
+The last option is definitely more attractive. And if you use ForceReply in your bot's questions, it will receive the user's answers even if it only receives replies, commands and mentions - without any extra work for the user.
-ChatPhoto
+ChatPhoto
This object represents a chat photo.
@@ -2499,7 +2510,7 @@ To learn how to create…">
-small_file_unique_id String -Unique file identifier of small (160x160) chat photo, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. +Unique file identifier of small (160x160) chat photo, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. big_file_id @@ -2509,11 +2520,11 @@ To learn how to create…">big_file_unique_id String -Unique file identifier of big (640x640) chat photo, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. +Unique file identifier of big (640x640) chat photo, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. ChatInviteLink
+ChatInviteLink
Represents an invite link for a chat.
@@ -2527,7 +2538,7 @@ To learn how to create…">
-invite_link String -The invite link. If the link was created by another chat administrator, then the second part of the link will be replaced with “…”. +The invite link. If the link was created by another chat administrator, then the second part of the link will be replaced with "...". creator @@ -2571,7 +2582,7 @@ To learn how to create…">ChatAdministratorRights
+ChatAdministratorRights
Represents the rights of an administrator in a chat.
@@ -2585,7 +2596,7 @@ To learn how to create…">
-is_anonymous Boolean -True, if the user's presence in the chat is hidden +True, if the user's presence in the chat is hidden can_manage_chat @@ -2644,7 +2655,7 @@ To learn how to create…">ChatMember
+ChatMember
This object contains information about one member of a chat. Currently, the following 6 types of chat members are supported:
-
- ChatMemberOwner
@@ -2654,7 +2665,7 @@ To learn how to create…">- ChatMemberLeft
- ChatMemberBanned
ChatMemberOwner
+ChatMemberOwner
Represents a chat member that owns the chat and has all administrator privileges.
@@ -2668,7 +2679,7 @@ To learn how to create…">
-status String -The member's status in the chat, always “creator” +The member's status in the chat, always "creator" user @@ -2678,7 +2689,7 @@ To learn how to create…">is_anonymous Boolean -True, if the user's presence in the chat is hidden +True, if the user's presence in the chat is hidden custom_title @@ -2687,7 +2698,7 @@ To learn how to create…">ChatMemberAdministrator
+ChatMemberAdministrator
Represents a chat member that has some additional privileges.
@@ -2701,7 +2712,7 @@ To learn how to create…">
-status String -The member's status in the chat, always “administrator” +The member's status in the chat, always "administrator" user @@ -2716,7 +2727,7 @@ To learn how to create…">is_anonymous Boolean -True, if the user's presence in the chat is hidden +True, if the user's presence in the chat is hidden can_manage_chat @@ -2780,7 +2791,7 @@ To learn how to create…">ChatMemberMember
+ChatMemberMember
Represents a chat member that has no additional privileges or restrictions.
@@ -2794,7 +2805,7 @@ To learn how to create…">
-status String -The member's status in the chat, always “member” +The member's status in the chat, always "member" user @@ -2803,7 +2814,7 @@ To learn how to create…">ChatMemberRestricted
+ChatMemberRestricted
Represents a chat member that is under certain restrictions in the chat. Supergroups only.
@@ -2817,7 +2828,7 @@ To learn how to create…">
-status String -The member's status in the chat, always “restricted” +The member's status in the chat, always "restricted" user @@ -2906,8 +2917,8 @@ To learn how to create…">ChatMemberLeft
-Represents a chat member that isn't currently a member of the chat, but may join it themselves.
+ChatMemberLeft
+Represents a chat member that isn't currently a member of the chat, but may join it themselves.
-
@@ -2920,7 +2931,7 @@ To learn how to create…"> status String -The member's status in the chat, always “left” +The member's status in the chat, always "left" user @@ -2929,8 +2940,8 @@ To learn how to create…">ChatMemberBanned
-Represents a chat member that was banned in the chat and can't return to the chat or view chat messages.
+ChatMemberBanned
+Represents a chat member that was banned in the chat and can't return to the chat or view chat messages.
-
@@ -2943,7 +2954,7 @@ To learn how to create…"> status String -The member's status in the chat, always “kicked” +The member's status in the chat, always "kicked" user @@ -2957,7 +2968,7 @@ To learn how to create…">ChatMemberUpdated
+ChatMemberUpdated
This object represents changes in the status of a chat member.
@@ -3005,7 +3016,7 @@ To learn how to create…">
-ChatJoinRequest
+ChatJoinRequest
Represents a join request sent to a chat.
@@ -3048,7 +3059,7 @@ To learn how to create…">
-ChatPermissions
+ChatPermissions
Describes actions that a non-administrator user is allowed to take in a chat.
@@ -3131,7 +3142,7 @@ To learn how to create…">
-ChatLocation
+ChatLocation
Represents a location to which a chat is connected.
@@ -3145,7 +3156,7 @@ To learn how to create…">
-location Location -The location to which the supergroup is connected. Can't be a live location. +The location to which the supergroup is connected. Can't be a live location. address @@ -3154,7 +3165,7 @@ To learn how to create…">ForumTopic
+ForumTopic
This object represents a forum topic.
@@ -3187,7 +3198,7 @@ To learn how to create…">
-BotCommand
+BotCommand
This object represents a bot command.
@@ -3210,7 +3221,7 @@ To learn how to create…">
-BotCommandScope
+BotCommandScope
This object represents the scope to which bot commands are applied. Currently, the following 7 scopes are supported:
-
- BotCommandScopeDefault
@@ -3221,7 +3232,7 @@ To learn how to create…">- BotCommandScopeChatAdministrators
- BotCommandScopeChatMember
Determining list of commands
+Determining list of commands
The following algorithm is used to determine the list of commands for a particular user viewing the bot menu. The first list of commands which is set is returned:
Commands in the chat with the bot
@@ -3247,7 +3258,7 @@ To learn how to create…">
-- botCommandScopeDefault + language_code
- botCommandScopeDefault
BotCommandScopeDefault
+BotCommandScopeDefault
Represents the default scope of bot commands. Default commands are used if no commands with a narrower scope are specified for the user.
@@ -3265,7 +3276,7 @@ To learn how to create…">
-BotCommandScopeAllPrivateChats
+BotCommandScopeAllPrivateChats
Represents the scope of bot commands, covering all private chats.
@@ -3283,7 +3294,7 @@ To learn how to create…">
-BotCommandScopeAllGroupChats
+BotCommandScopeAllGroupChats
Represents the scope of bot commands, covering all group and supergroup chats.
@@ -3301,7 +3312,7 @@ To learn how to create…">
-BotCommandScopeAllChatAdministrators
+BotCommandScopeAllChatAdministrators
Represents the scope of bot commands, covering all group and supergroup chat administrators.
@@ -3319,7 +3330,7 @@ To learn how to create…">
-BotCommandScopeChat
+BotCommandScopeChat
Represents the scope of bot commands, covering a specific chat.
@@ -3342,7 +3353,7 @@ To learn how to create…">
-BotCommandScopeChatAdministrators
+BotCommandScopeChatAdministrators
Represents the scope of bot commands, covering all administrators of a specific group or supergroup chat.
@@ -3365,7 +3376,7 @@ To learn how to create…">
-BotCommandScopeChatMember
+BotCommandScopeChatMember
Represents the scope of bot commands, covering a specific member of a group or supergroup chat.
@@ -3393,8 +3404,8 @@ To learn how to create…">
-BotName
-This object represents the bot's name.
+BotName
+This object represents the bot's name.
-
@@ -3407,12 +3418,12 @@ To learn how to create…"> name String -The bot's name +The bot's name BotDescription
-This object represents the bot's description.
+BotDescription
+This object represents the bot's description.
-
@@ -3425,12 +3436,12 @@ To learn how to create…"> description String -The bot's description +The bot's description BotShortDescription
-This object represents the bot's short description.
+BotShortDescription
+This object represents the bot's short description.
-
@@ -3443,20 +3454,20 @@ To learn how to create…"> short_description String -The bot's short description +The bot's short description MenuButton
-This object describes the bot's menu button in a private chat. It should be one of
+MenuButton
+This object describes the bot's menu button in a private chat. It should be one of
If a menu button other than MenuButtonDefault is set for a private chat, then it is applied in the chat. Otherwise the default menu button is applied. By default, the menu button opens the list of bot commands.
-MenuButtonCommands
-Represents a menu button, which opens the bot's list of commands.
+MenuButtonCommands
+Represents a menu button, which opens the bot's list of commands.
-
@@ -3473,7 +3484,7 @@ To learn how to create…"> MenuButtonWebApp
+MenuButtonWebApp
Represents a menu button, which launches a Web App.
@@ -3501,7 +3512,7 @@ To learn how to create…">
-MenuButtonDefault
+MenuButtonDefault
Describes that no specific value for the menu button was set.
@@ -3519,7 +3530,7 @@ To learn how to create…">
-ResponseParameters
+ResponseParameters
Describes why a request was unsuccessful.
@@ -3542,7 +3553,7 @@ To learn how to create…">
-InputMedia
+InputMedia
This object represents the content of a media message to be sent. It should be one of
-
- InputMediaAnimation
@@ -3551,7 +3562,7 @@ To learn how to create…">- InputMediaPhoto
- InputMediaVideo
InputMediaPhoto
+InputMediaPhoto
Represents a photo to be sent.
@@ -3570,7 +3581,7 @@ To learn how to create…">
-media String -File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files » +File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass "attach://<file_attach_name>" to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files » caption @@ -3594,7 +3605,7 @@ To learn how to create…">InputMediaVideo
+InputMediaVideo
Represents a video to be sent.
@@ -3613,12 +3624,12 @@ To learn how to create…">
-media String -File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files » +File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass "attach://<file_attach_name>" to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files » thumbnail InputFile or String -Optional. Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » +Optional. Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » caption @@ -3662,7 +3673,7 @@ To learn how to create…">InputMediaAnimation
+InputMediaAnimation
Represents an animation file (GIF or H.264/MPEG-4 AVC video without sound) to be sent.
@@ -3681,12 +3692,12 @@ To learn how to create…">
-media String -File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files » +File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass "attach://<file_attach_name>" to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files » thumbnail InputFile or String -Optional. Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » +Optional. Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » caption @@ -3725,7 +3736,7 @@ To learn how to create…">InputMediaAudio
+InputMediaAudio
Represents an audio file to be treated as music to be sent.
@@ -3744,12 +3755,12 @@ To learn how to create…">
-media String -File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files » +File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass "attach://<file_attach_name>" to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files » thumbnail InputFile or String -Optional. Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » +Optional. Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » caption @@ -3783,7 +3794,7 @@ To learn how to create…">InputMediaDocument
+InputMediaDocument
Represents a general file to be sent.
@@ -3802,12 +3813,12 @@ To learn how to create…">
-media String -File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files » +File to send. Pass a file_id to send a file that exists on the Telegram servers (recommended), pass an HTTP URL for Telegram to get a file from the Internet, or pass "attach://<file_attach_name>" to upload a new one using multipart/form-data under <file_attach_name> name. More information on Sending Files » thumbnail InputFile or String -Optional. Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » +Optional. Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » caption @@ -3831,21 +3842,21 @@ To learn how to create…">InputFile
+InputFile
This object represents the contents of a file to be uploaded. Must be posted using multipart/form-data in the usual way that files are uploaded via the browser.
-Sending files
+Sending files
There are three ways to send files (photos, stickers, audio, media, etc.):
-
- If the file is already stored somewhere on the Telegram servers, you don't need to reupload it: each file object has a file_id field, simply pass this file_id as a parameter instead of uploading. There are no limits for files sent this way.
+- If the file is already stored somewhere on the Telegram servers, you don't need to reupload it: each file object has a file_id field, simply pass this file_id as a parameter instead of uploading. There are no limits for files sent this way.
- Provide Telegram with an HTTP URL for the file to be sent. Telegram will download and send the file. 5 MB max size for photos and 20 MB max for other types of content.
- Post the file using multipart/form-data in the usual way that files are uploaded via the browser. 10 MB max size for photos, 50 MB for other files.
Sending by file_id
-
- It is not possible to change the file type when resending by file_id. I.e. a video can't be sent as a photo, a photo can't be sent as a document, etc.
+- It is not possible to change the file type when resending by file_id. I.e. a video can't be sent as a photo, a photo can't be sent as a document, etc.
- It is not possible to resend thumbnails.
- Resending a photo by file_id will send all of its sizes.
-- file_id is unique for each individual bot and can't be transferred from one bot to another.
+- file_id is unique for each individual bot and can't be transferred from one bot to another.
- file_id uniquely identifies a file, but a file can have different valid file_ids even for the same bot.
Sending by URL
@@ -3853,21 +3864,22 @@ To learn how to create…">When sending by URL the target file must have the correct MIME type (e.g., audio/mpeg for sendAudio, etc.). In sendDocument, sending by URL will currently only work for GIF, PDF and ZIP files. To use sendVoice, the file must have the type audio/ogg and be no more than 1MB in size. 1-20MB voice notes will be sent as files. -Other configurations may work but we can't guarantee that they will. +Other configurations may work but we can't guarantee that they will. -Inline mode objects
+Inline mode objects
Objects and methods used in the inline mode are described in the Inline mode section.
-Available methods
+Available methods
--All methods in the Bot API are case-insensitive. We support GET and POST HTTP methods. Use either URL query string or application/json or application/x-www-form-urlencoded or multipart/form-data for passing parameters in Bot API requests.
+
On successful call, a JSON-object containing the result will be returned.All methods in the Bot API are case-insensitive. We support GET and POST HTTP methods. Use either URL query string or application/json or application/x-www-form-urlencoded or multipart/form-data for passing parameters in Bot API requests. +On successful call, a JSON-object containing the result will be returned.
getMe
-A simple method for testing your bot's authentication token. Requires no parameters. Returns basic information about the bot in form of a User object.
-logOut
+getMe
+A simple method for testing your bot's authentication token. Requires no parameters. Returns basic information about the bot in form of a User object.
+logOut
Use this method to log out from the cloud Bot API server before launching the bot locally. You must log out the bot before running it locally, otherwise there is no guarantee that the bot will receive updates. After a successful call, you can immediately log in on a local server, but will not be able to log in back to the cloud Bot API server for 10 minutes. Returns True on success. Requires no parameters.
-close
-Use this method to close the bot instance before moving it from one local server to another. You need to delete the webhook before calling this method to ensure that the bot isn't launched again after server restart. The method will return error 429 in the first 10 minutes after the bot is launched. Returns True on success. Requires no parameters.
-sendMessage
+close
+Use this method to close the bot instance before moving it from one local server to another. You need to delete the webhook before calling this method to ensure that the bot isn't launched again after server restart. The method will return error 429 in the first 10 minutes after the bot is launched. Returns True on success. Requires no parameters.
+sendMessage
Use this method to send text messages. On success, the sent Message is returned.
@@ -3947,16 +3959,21 @@ To learn how to create…">
-Formatting options
-The Bot API supports basic formatting for messages. You can use bold, italic, underlined, strikethrough, and spoiler text, as well as inline links and pre-formatted code in your bots' messages. Telegram clients will render them accordingly. You can specify text entities directly, or use markdown-style or HTML-style formatting.
-Note that Telegram clients will display an alert to the user before opening an inline link ('Open this link?' together with the full URL).
-Message entities can be nested, providing following restrictions are met:
+
- If two entities have common characters, then one of them is fully contained inside another.
- bold, italic, underline, strikethrough, and spoiler entities can contain and can be part of any other entities, except pre and code.
- All other entities can't contain each other.Formatting options
+The Bot API supports basic formatting for messages. You can use bold, italic, underlined, strikethrough, and spoiler text, as well as inline links and pre-formatted code in your bots' messages. Telegram clients will render them accordingly. You can specify text entities directly, or use markdown-style or HTML-style formatting.
+Note that Telegram clients will display an alert to the user before opening an inline link ('Open this link?' together with the full URL).
+Message entities can be nested, providing following restrictions are met:
++
- If two entities have common characters, then one of them is fully contained inside another.
+- bold, italic, underline, strikethrough, and spoiler entities can contain and can be part of any other entities, except pre and code.
+- All other entities can't contain each other.
+Links
tg://user?id=<user_id>
can be used to mention a user by their ID without using a username. Please note:-
- These links will work only if they are used inside an inline link or in an inline keyboard button. For example, they will not work, when used in a message text.
-- Unless the user is a member of the chat where they were mentioned, these mentions are only guaranteed to work if the user has contacted the bot in private in the past or has sent a callback query to the bot via an inline button and doesn't have Forwarded Messages privacy enabled for the bot.
+- Unless the user is a member of the chat where they were mentioned, these mentions are only guaranteed to work if the user has contacted the bot in private in the past or has sent a callback query to the bot via an inline button and doesn't have Forwarded Messages privacy enabled for the bot.
MarkdownV2 style
+MarkdownV2 style
To use this mode, pass MarkdownV2 in the parse_mode field. Use the following syntax in your message:
*bold \*text* _italic \*text_ @@ -3976,28 +3993,28 @@ pre-formatted fixed-width code block written in the Python programming language ```
Please note:
-
-- Any character with code between 1 and 126 inclusively can be escaped anywhere with a preceding '\' character, in which case it is treated as an ordinary character and not a part of the markup. This implies that '\' character usually must be escaped with a preceding '\' character.
-- Inside
-pre
andcode
entities, all '`' and '\' characters must be escaped with a preceding '\' character.- Inside the
-(...)
part of the inline link and custom emoji definition, all ')' and '\' must be escaped with a preceding '\' character.- In all other places characters '_', '*', '[', ']', '(', ')', '~', '`', '>', '#', '+', '-', '=', '|', '{', '}', '.', '!' must be escaped with the preceding character '\'.
+- Any character with code between 1 and 126 inclusively can be escaped anywhere with a preceding '\' character, in which case it is treated as an ordinary character and not a part of the markup. This implies that '\' character usually must be escaped with a preceding '\' character.
+- Inside
+pre
andcode
entities, all '`' and '\' characters must be escaped with a preceding '\' character.- Inside the
+(...)
part of the inline link and custom emoji definition, all ')' and '\' must be escaped with a preceding '\' character.- In all other places characters '_', '*', '[', ']', '(', ')', '~', '`', '>', '#', '+', '-', '=', '|', '{', '}', '.', '!' must be escaped with the preceding character '\'.
- In case of ambiguity between
italic
andunderline
entities__
is always greadily treated from left to right as beginning or end ofunderline
entity, so instead of___italic underline___
use___italic underline_\r__
, where\r
is a character with code 13, which will be ignored.- A valid emoji must be provided as an alternative value for the custom emoji. The emoji will be shown instead of the custom emoji in places where a custom emoji cannot be displayed (e.g., system notifications) or if the message is forwarded by a non-premium user. It is recommended to use the emoji from the emoji field of the custom emoji sticker.
- Custom emoji entities can only be used by bots that purchased additional usernames on Fragment.
HTML style
+HTML style
To use this mode, pass HTML in the parse_mode field. The following tags are currently supported:
+<pre><code class="language-python">pre-formatted fixed-width code block written in the Python programming language</code></pre><b>bold</b>, <strong>bold</strong> <i>italic</i>, <em>italic</em> <u>underline</u>, <ins>underline</ins> <s>strikethrough</s>, <strike>strikethrough</strike>, <del>strikethrough</del> -<span class="tg-spoiler">spoiler</span>, <tg-spoiler>spoiler</tg-spoiler> -<b>bold <i>italic bold <s>italic bold strikethrough <span class="tg-spoiler">italic bold strikethrough spoiler</span></s> <u>underline italic bold</u></i> bold</b> -<a href="http://www.example.com/">inline URL</a> -<a href="tg://user?id=123456789">inline mention of a user</a> -<tg-emoji emoji-id="5368324170671202286"></tg-emoji> +<span class="tg-spoiler">spoiler</span>, <tg-spoiler>spoiler</tg-spoiler> +<b>bold <i>italic bold <s>italic bold strikethrough <span class="tg-spoiler">italic bold strikethrough spoiler</span></s> <u>underline italic bold</u></i> bold</b> +<a href="http://www.example.com/">inline URL</a> +<a href="tg://user?id=123456789">inline mention of a user</a> +<tg-emoji emoji-id="5368324170671202286"></tg-emoji> <code>inline fixed-width code</code> <pre>pre-formatted fixed-width code block</pre> -<pre><code class="language-python">pre-formatted fixed-width code block written in the Python programming language</code></pre>
Please note:
-
- Only the tags mentioned above are currently supported.
@@ -4005,11 +4022,11 @@ pre-formatted fixed-width code block written in the Python programming language- All numerical HTML entities are supported.
- The API currently supports only the following named HTML entities:
<
,>
,&
and"
.- Use nested
-pre
andcode
tags, to define programming language forpre
entity.- Programming language can't be specified for standalone
+code
tags.- Programming language can't be specified for standalone
code
tags.- A valid emoji must be used as the content of the
tg-emoji
tag. The emoji will be shown instead of the custom emoji in places where a custom emoji cannot be displayed (e.g., system notifications) or if the message is forwarded by a non-premium user. It is recommended to use the emoji from the emoji field of the custom emoji sticker.- Custom emoji entities can only be used by bots that purchased additional usernames on Fragment.
Markdown style
+Markdown style
This is a legacy mode, retained for backward compatibility. To use this mode, pass Markdown in the parse_mode field. Use the following syntax in your message:
*bold text* _italic text_ @@ -4026,11 +4043,11 @@ pre-formatted fixed-width code block written in the Python programming language
-
- Entities must not be nested, use parse mode MarkdownV2 instead.
- There is no way to specify underline and strikethrough entities, use parse mode MarkdownV2 instead.
-- To escape characters '_', '*', '`', '[' outside of an entity, prepend the characters '\' before them.
+- To escape characters '_', '*', '`', '[' outside of an entity, prepend the characters '\' before them.
- Escaping inside entities is not allowed, so entity must be closed first and reopened again: use
_snake_\__case_
for italicsnake_case
and*2*\**2=4*
for bold2*2=4
.forwardMessage
-Use this method to forward messages of any kind. Service messages can't be forwarded. On success, the sent Message is returned.
+forwardMessage
+Use this method to forward messages of any kind. Service messages can't be forwarded. On success, the sent Message is returned.
-
@@ -4079,8 +4096,8 @@ pre-formatted fixed-width code block written in the Python programming language copyMessage
-Use this method to copy messages of any kind. Service messages and invoice messages can't be copied. A quiz poll can be copied only if the value of the field correct_option_id is known to the bot. The method is analogous to the method forwardMessage, but the copied message doesn't have a link to the original message. Returns the MessageId of the sent message on success.
+copyMessage
+Use this method to copy messages of any kind. Service messages and invoice messages can't be copied. A quiz poll can be copied only if the value of the field correct_option_id is known to the bot. The method is analogous to the method forwardMessage, but the copied message doesn't have a link to the original message. Returns the MessageId of the sent message on success.
-
@@ -4165,7 +4182,7 @@ pre-formatted fixed-width code block written in the Python programming language sendPhoto
+sendPhoto
Use this method to send photos. On success, the sent Message is returned.
@@ -4193,7 +4210,7 @@ pre-formatted fixed-width code block written in the Python programming language
-photo InputFile or String Yes -Photo to send. Pass a file_id as String to send a photo that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a photo from the Internet, or upload a new photo using multipart/form-data. The photo must be at most 10 MB in size. The photo's width and height must not exceed 10000 in total. Width and height ratio must be at most 20. More information on Sending Files » +Photo to send. Pass a file_id as String to send a photo that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a photo from the Internet, or upload a new photo using multipart/form-data. The photo must be at most 10 MB in size. The photo's width and height must not exceed 10000 in total. Width and height ratio must be at most 20. More information on Sending Files » caption @@ -4251,7 +4268,7 @@ pre-formatted fixed-width code block written in the Python programming languagesendAudio
+sendAudio
Use this method to send audio files, if you want Telegram clients to display them in the music player. Your audio must be in the .MP3 or .M4A format. On success, the sent Message is returned. Bots can currently send audio files of up to 50 MB in size, this limit may be changed in the future.
For sending voice messages, use the sendVoice method instead.
@@ -4322,7 +4339,7 @@ pre-formatted fixed-width code block written in the Python programming language
-thumbnail InputFile or String Optional -Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » +Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » disable_notification @@ -4356,7 +4373,7 @@ pre-formatted fixed-width code block written in the Python programming languagesendDocument
+sendDocument
Use this method to send general files. On success, the sent Message is returned. Bots can currently send files of any type of up to 50 MB in size, this limit may be changed in the future.
@@ -4390,7 +4407,7 @@ pre-formatted fixed-width code block written in the Python programming language
-thumbnail InputFile or String Optional -Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » +Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » caption @@ -4448,7 +4465,7 @@ pre-formatted fixed-width code block written in the Python programming languagesendVideo
+sendVideo
Use this method to send video files, Telegram clients support MPEG4 videos (other formats may be sent as Document). On success, the sent Message is returned. Bots can currently send video files of up to 50 MB in size, this limit may be changed in the future.
@@ -4500,7 +4517,7 @@ pre-formatted fixed-width code block written in the Python programming language
-thumbnail InputFile or String Optional -Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » +Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » caption @@ -4564,7 +4581,7 @@ pre-formatted fixed-width code block written in the Python programming languagesendAnimation
+sendAnimation
Use this method to send animation files (GIF or H.264/MPEG-4 AVC video without sound). On success, the sent Message is returned. Bots can currently send animation files of up to 50 MB in size, this limit may be changed in the future.
@@ -4616,7 +4633,7 @@ pre-formatted fixed-width code block written in the Python programming language
-thumbnail InputFile or String Optional -Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » +Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » caption @@ -4674,7 +4691,7 @@ pre-formatted fixed-width code block written in the Python programming languagesendVoice
+sendVoice
Use this method to send audio files, if you want Telegram clients to display the file as a playable voice message. For this to work, your audio must be in an .OGG file encoded with OPUS (other formats may be sent as Audio or Document). On success, the sent Message is returned. Bots can currently send voice messages of up to 50 MB in size, this limit may be changed in the future.
@@ -4760,7 +4777,7 @@ pre-formatted fixed-width code block written in the Python programming language
-sendVideoNote
+sendVideoNote
As of v.4.0, Telegram clients support rounded square MPEG4 videos of up to 1 minute long. Use this method to send video messages. On success, the sent Message is returned.
@@ -4806,7 +4823,7 @@ pre-formatted fixed-width code block written in the Python programming language
-thumbnail InputFile or String Optional -Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass “attach://<file_attach_name>” if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » +Thumbnail of the file sent; can be ignored if thumbnail generation for the file is supported server-side. The thumbnail should be in JPEG format and less than 200 kB in size. A thumbnail's width and height should not exceed 320. Ignored if the file is not uploaded using multipart/form-data. Thumbnails can't be reused and can be only uploaded as a new file, so you can pass "attach://<file_attach_name>" if the thumbnail was uploaded using multipart/form-data under <file_attach_name>. More information on Sending Files » disable_notification @@ -4840,7 +4857,7 @@ pre-formatted fixed-width code block written in the Python programming languagesendMediaGroup
+sendMediaGroup
Use this method to send a group of photos, videos, documents or audios as an album. Documents and audio files can be only grouped in an album with messages of the same type. On success, an array of Messages that were sent is returned.
@@ -4896,7 +4913,7 @@ pre-formatted fixed-width code block written in the Python programming language
-sendLocation
+sendLocation
Use this method to send point on the map. On success, the sent Message is returned.
@@ -4988,7 +5005,7 @@ pre-formatted fixed-width code block written in the Python programming language
-sendVenue
+sendVenue
Use this method to send information about a venue. On success, the sent Message is returned.
@@ -5046,7 +5063,7 @@ pre-formatted fixed-width code block written in the Python programming language
-foursquare_type String Optional -Foursquare type of the venue, if known. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.) +Foursquare type of the venue, if known. (For example, "arts_entertainment/default", "arts_entertainment/aquarium" or "food/icecream".) google_place_id @@ -5092,7 +5109,7 @@ pre-formatted fixed-width code block written in the Python programming languagesendContact
+sendContact
Use this method to send phone contacts. On success, the sent Message is returned.
@@ -5120,19 +5137,19 @@ pre-formatted fixed-width code block written in the Python programming language
-phone_number String Yes -Contact's phone number +Contact's phone number first_name String Yes -Contact's first name +Contact's first name last_name String Optional -Contact's last name +Contact's last name vcard @@ -5172,7 +5189,7 @@ pre-formatted fixed-width code block written in the Python programming languagesendPoll
+sendPoll
Use this method to send a native poll. On success, the sent Message is returned.
@@ -5218,7 +5235,7 @@ pre-formatted fixed-width code block written in the Python programming language
-type String Optional -Poll type, “quiz” or “regular”, defaults to “regular” +Poll type, "quiz" or "regular", defaults to "regular" allows_multiple_answers @@ -5254,13 +5271,13 @@ pre-formatted fixed-width code block written in the Python programming languageopen_period Integer Optional -Amount of time in seconds the poll will be active after creation, 5-600. Can't be used together with close_date. +Amount of time in seconds the poll will be active after creation, 5-600. Can't be used together with close_date. close_date Integer Optional -Point in time (Unix timestamp) when the poll will be automatically closed. Must be at least 5 and no more than 600 seconds in the future. Can't be used together with open_period. +Point in time (Unix timestamp) when the poll will be automatically closed. Must be at least 5 and no more than 600 seconds in the future. Can't be used together with open_period. is_closed @@ -5300,7 +5317,7 @@ pre-formatted fixed-width code block written in the Python programming languagesendDice
+sendDice
Use this method to send an animated emoji that will display a random value. On success, the sent Message is returned.
@@ -5328,7 +5345,7 @@ pre-formatted fixed-width code block written in the Python programming language
-emoji String Optional -Emoji on which the dice throw animation is based. Currently, must be one of “”, “”, “”, “”, “”, or “”. Dice can have values 1-6 for “”, “” and “”, values 1-5 for “” and “”, and values 1-64 for “”. Defaults to “” +Emoji on which the dice throw animation is based. Currently, must be one of "", "", "", "", "", or "". Dice can have values 1-6 for "", "" and "", values 1-5 for "" and "", and values 1-64 for "". Defaults to "" disable_notification @@ -5362,10 +5379,10 @@ pre-formatted fixed-width code block written in the Python programming languagesendChatAction
-Use this method when you need to tell the user that something is happening on the bot's side. The status is set for 5 seconds or less (when a message arrives from your bot, Telegram clients clear its typing status). Returns True on success.
+sendChatAction
+Use this method when you need to tell the user that something is happening on the bot's side. The status is set for 5 seconds or less (when a message arrives from your bot, Telegram clients clear its typing status). Returns True on success.
-Example: The ImageBot needs some time to process a request and upload the image. Instead of sending a text message along the lines of “Retrieving image, please wait…”, the bot may use sendChatAction with action = upload_photo. The user will see a “sending photo” status for the bot.
+Example: The ImageBot needs some time to process a request and upload the image. Instead of sending a text message along the lines of "Retrieving image, please wait...", the bot may use sendChatAction with action = upload_photo. The user will see a "sending photo" status for the bot.
We only recommend using this method when a response from the bot will take a noticeable amount of time to arrive.
@@ -5398,7 +5415,7 @@ pre-formatted fixed-width code block written in the Python programming language
-getUserProfilePhotos
+getUserProfilePhotos
Use this method to get a list of profile pictures for a user. Returns a UserProfilePhotos object.
@@ -5430,7 +5447,7 @@ pre-formatted fixed-width code block written in the Python programming language
-getFile
+getFile
Use this method to get basic information about a file and prepare it for downloading. For the moment, bots can download files of up to 20MB in size. On success, a File object is returned. The file can then be downloaded via the link
https://api.telegram.org/file/bot<token>/<file_path>
, where<file_path>
is taken from the response. It is guaranteed that the link will be valid for at least 1 hour. When the link expires, a new one can be requested by calling getFile again.@@ -5450,8 +5467,8 @@ pre-formatted fixed-width code block written in the Python programming language
-Note: This function may not preserve the original file name and MIME type. You should save the file's MIME type and name (if available) when the File object is received.
-banChatMember
+Note: This function may not preserve the original file name and MIME type. You should save the file's MIME type and name (if available) when the File object is received.
+banChatMember
Use this method to ban a user in a group, a supergroup or a channel. In the case of supergroups and channels, the user will not be able to return to the chat on their own using invite links, etc., unless unbanned first. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
@@ -5489,8 +5506,8 @@ pre-formatted fixed-width code block written in the Python programming language
-unbanChatMember
-Use this method to unban a previously banned user in a supergroup or channel. The user will not return to the group or channel automatically, but will be able to join via link, etc. The bot must be an administrator for this to work. By default, this method guarantees that after the call the user is not a member of the chat, but will be able to join it. So if the user is a member of the chat they will also be removed from the chat. If you don't want this, use the parameter only_if_banned. Returns True on success.
+unbanChatMember
+Use this method to unban a previously banned user in a supergroup or channel. The user will not return to the group or channel automatically, but will be able to join via link, etc. The bot must be an administrator for this to work. By default, this method guarantees that after the call the user is not a member of the chat, but will be able to join it. So if the user is a member of the chat they will also be removed from the chat. If you don't want this, use the parameter only_if_banned. Returns True on success.
-
@@ -5521,7 +5538,7 @@ pre-formatted fixed-width code block written in the Python programming language restrictChatMember
+restrictChatMember
Use this method to restrict a user in a supergroup. The bot must be an administrator in the supergroup for this to work and must have the appropriate administrator rights. Pass True for all permissions to lift restrictions from a user. Returns True on success.
@@ -5565,7 +5582,7 @@ pre-formatted fixed-width code block written in the Python programming language
-promoteChatMember
+promoteChatMember
Use this method to promote or demote a user in a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Pass False for all boolean parameters to demote a user. Returns True on success.
@@ -5593,7 +5610,7 @@ pre-formatted fixed-width code block written in the Python programming language
-is_anonymous Boolean Optional -Pass True if the administrator's presence in the chat is hidden +Pass True if the administrator's presence in the chat is hidden can_manage_chat @@ -5663,7 +5680,7 @@ pre-formatted fixed-width code block written in the Python programming languagesetChatAdministratorCustomTitle
+setChatAdministratorCustomTitle
Use this method to set a custom title for an administrator in a supergroup promoted by the bot. Returns True on success.
@@ -5695,8 +5712,8 @@ pre-formatted fixed-width code block written in the Python programming language
-banChatSenderChat
-Use this method to ban a channel chat in a supergroup or a channel. Until the chat is unbanned, the owner of the banned chat won't be able to send messages on behalf of any of their channels. The bot must be an administrator in the supergroup or channel for this to work and must have the appropriate administrator rights. Returns True on success.
+banChatSenderChat
+Use this method to ban a channel chat in a supergroup or a channel. Until the chat is unbanned, the owner of the banned chat won't be able to send messages on behalf of any of their channels. The bot must be an administrator in the supergroup or channel for this to work and must have the appropriate administrator rights. Returns True on success.
-
@@ -5721,7 +5738,7 @@ pre-formatted fixed-width code block written in the Python programming language unbanChatSenderChat
+unbanChatSenderChat
Use this method to unban a previously banned channel chat in a supergroup or channel. The bot must be an administrator for this to work and must have the appropriate administrator rights. Returns True on success.
@@ -5747,7 +5764,7 @@ pre-formatted fixed-width code block written in the Python programming language
-setChatPermissions
+setChatPermissions
Use this method to set default chat permissions for all members. The bot must be an administrator in the group or a supergroup for this to work and must have the can_restrict_members administrator rights. Returns True on success.
@@ -5779,7 +5796,7 @@ pre-formatted fixed-width code block written in the Python programming language
-exportChatInviteLink
+exportChatInviteLink
Use this method to generate a new primary invite link for a chat; any previously generated primary link is revoked. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the new invite link as String on success.
@@ -5800,9 +5817,9 @@ pre-formatted fixed-width code block written in the Python programming language
--Note: Each administrator in a chat generates their own invite links. Bots can't use invite links generated by other administrators. If you want your bot to work with invite links, it will need to generate its own link using exportChatInviteLink or by calling the getChat method. If your bot needs to generate a new primary invite link replacing its previous one, use exportChatInviteLink again.
+Note: Each administrator in a chat generates their own invite links. Bots can't use invite links generated by other administrators. If you want your bot to work with invite links, it will need to generate its own link using exportChatInviteLink or by calling the getChat method. If your bot needs to generate a new primary invite link replacing its previous one, use exportChatInviteLink again.
createChatInviteLink
+createChatInviteLink
Use this method to create an additional invite link for a chat. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. The link can be revoked using the method revokeChatInviteLink. Returns the new invite link as ChatInviteLink object.
@@ -5842,11 +5859,11 @@ pre-formatted fixed-width code block written in the Python programming language
-creates_join_request Boolean Optional -True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can't be specified +True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can't be specified editChatInviteLink
+editChatInviteLink
Use this method to edit a non-primary invite link created by the bot. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the edited invite link as a ChatInviteLink object.
@@ -5892,11 +5909,11 @@ pre-formatted fixed-width code block written in the Python programming language
-creates_join_request Boolean Optional -True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can't be specified +True, if users joining the chat via the link need to be approved by chat administrators. If True, member_limit can't be specified revokeChatInviteLink
+revokeChatInviteLink
Use this method to revoke an invite link created by the bot. If the primary link is revoked, a new link is automatically generated. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns the revoked invite link as ChatInviteLink object.
@@ -5922,7 +5939,7 @@ pre-formatted fixed-width code block written in the Python programming language
-approveChatJoinRequest
+approveChatJoinRequest
Use this method to approve a chat join request. The bot must be an administrator in the chat for this to work and must have the can_invite_users administrator right. Returns True on success.
@@ -5948,7 +5965,7 @@ pre-formatted fixed-width code block written in the Python programming language
-declineChatJoinRequest
+declineChatJoinRequest
Use this method to decline a chat join request. The bot must be an administrator in the chat for this to work and must have the can_invite_users administrator right. Returns True on success.
@@ -5974,8 +5991,8 @@ pre-formatted fixed-width code block written in the Python programming language
-setChatPhoto
-Use this method to set a new profile photo for the chat. Photos can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
+setChatPhoto
+Use this method to set a new profile photo for the chat. Photos can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
-
@@ -6000,8 +6017,8 @@ pre-formatted fixed-width code block written in the Python programming language deleteChatPhoto
-Use this method to delete a chat photo. Photos can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
+deleteChatPhoto
+Use this method to delete a chat photo. Photos can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
-
@@ -6020,8 +6037,8 @@ pre-formatted fixed-width code block written in the Python programming language setChatTitle
-Use this method to change the title of a chat. Titles can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
+setChatTitle
+Use this method to change the title of a chat. Titles can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
-
@@ -6046,7 +6063,7 @@ pre-formatted fixed-width code block written in the Python programming language setChatDescription
+setChatDescription
Use this method to change the description of a group, a supergroup or a channel. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
@@ -6072,8 +6089,8 @@ pre-formatted fixed-width code block written in the Python programming language
-pinChatMessage
-Use this method to add a message to the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' administrator right in a supergroup or 'can_edit_messages' administrator right in a channel. Returns True on success.
+pinChatMessage
+Use this method to add a message to the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' administrator right in a supergroup or 'can_edit_messages' administrator right in a channel. Returns True on success.
-
@@ -6104,8 +6121,8 @@ pre-formatted fixed-width code block written in the Python programming language unpinChatMessage
-Use this method to remove a message from the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' administrator right in a supergroup or 'can_edit_messages' administrator right in a channel. Returns True on success.
+unpinChatMessage
+Use this method to remove a message from the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' administrator right in a supergroup or 'can_edit_messages' administrator right in a channel. Returns True on success.
-
@@ -6130,8 +6147,8 @@ pre-formatted fixed-width code block written in the Python programming language unpinAllChatMessages
-Use this method to clear the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' administrator right in a supergroup or 'can_edit_messages' administrator right in a channel. Returns True on success.
+unpinAllChatMessages
+Use this method to clear the list of pinned messages in a chat. If the chat is not a private chat, the bot must be an administrator in the chat for this to work and must have the 'can_pin_messages' administrator right in a supergroup or 'can_edit_messages' administrator right in a channel. Returns True on success.
-
@@ -6150,7 +6167,7 @@ pre-formatted fixed-width code block written in the Python programming language leaveChat
+leaveChat
Use this method for your bot to leave a group, supergroup or channel. Returns True on success.
@@ -6170,7 +6187,7 @@ pre-formatted fixed-width code block written in the Python programming language
-getChat
+getChat
Use this method to get up to date information about the chat (current name of the user for one-on-one conversations, current username of a user, group or channel, etc.). Returns a Chat object on success.
@@ -6190,8 +6207,8 @@ pre-formatted fixed-width code block written in the Python programming language
-getChatAdministrators
-Use this method to get a list of administrators in a chat, which aren't bots. Returns an Array of ChatMember objects.
+getChatAdministrators
+Use this method to get a list of administrators in a chat, which aren't bots. Returns an Array of ChatMember objects.
-
@@ -6210,7 +6227,7 @@ pre-formatted fixed-width code block written in the Python programming language getChatMemberCount
+getChatMemberCount
Use this method to get the number of members in a chat. Returns Int on success.
@@ -6230,7 +6247,7 @@ pre-formatted fixed-width code block written in the Python programming language
-getChatMember
+getChatMember
Use this method to get information about a member of a chat. The method is only guaranteed to work for other users if the bot is an administrator in the chat. Returns a ChatMember object on success.
@@ -6256,7 +6273,7 @@ pre-formatted fixed-width code block written in the Python programming language
-setChatStickerSet
+setChatStickerSet
Use this method to set a new group sticker set for a supergroup. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Use the field can_set_sticker_set optionally returned in getChat requests to check if the bot can use this method. Returns True on success.
@@ -6282,7 +6299,7 @@ pre-formatted fixed-width code block written in the Python programming language
-deleteChatStickerSet
+deleteChatStickerSet
Use this method to delete a group sticker set from a supergroup. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Use the field can_set_sticker_set optionally returned in getChat requests to check if the bot can use this method. Returns True on success.
@@ -6302,9 +6319,9 @@ pre-formatted fixed-width code block written in the Python programming language
-getForumTopicIconStickers
+getForumTopicIconStickers
Use this method to get custom emoji stickers, which can be used as a forum topic icon by any user. Requires no parameters. Returns an Array of Sticker objects.
-createForumTopic
+createForumTopic
Use this method to create a topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. Returns information about the created topic as a ForumTopic object.
@@ -6342,7 +6359,7 @@ pre-formatted fixed-width code block written in the Python programming language
-editForumTopic
+editForumTopic
Use this method to edit name and icon of a topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have can_manage_topics administrator rights, unless it is the creator of the topic. Returns True on success.
@@ -6380,7 +6397,7 @@ pre-formatted fixed-width code block written in the Python programming language
-closeForumTopic
+closeForumTopic
Use this method to close an open topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights, unless it is the creator of the topic. Returns True on success.
@@ -6406,7 +6423,7 @@ pre-formatted fixed-width code block written in the Python programming language
-reopenForumTopic
+reopenForumTopic
Use this method to reopen a closed topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights, unless it is the creator of the topic. Returns True on success.
@@ -6432,7 +6449,7 @@ pre-formatted fixed-width code block written in the Python programming language
-deleteForumTopic
+deleteForumTopic
Use this method to delete a forum topic along with all its messages in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_delete_messages administrator rights. Returns True on success.
@@ -6458,7 +6475,7 @@ pre-formatted fixed-width code block written in the Python programming language
-unpinAllForumTopicMessages
+unpinAllForumTopicMessages
Use this method to clear the list of pinned messages in a forum topic. The bot must be an administrator in the chat for this to work and must have the can_pin_messages administrator right in the supergroup. Returns True on success.
@@ -6484,8 +6501,8 @@ pre-formatted fixed-width code block written in the Python programming language
-editGeneralForumTopic
-Use this method to edit the name of the 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have can_manage_topics administrator rights. Returns True on success.
+editGeneralForumTopic
+Use this method to edit the name of the 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have can_manage_topics administrator rights. Returns True on success.
-
@@ -6510,8 +6527,8 @@ pre-formatted fixed-width code block written in the Python programming language closeGeneralForumTopic
-Use this method to close an open 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. Returns True on success.
+closeGeneralForumTopic
+Use this method to close an open 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. Returns True on success.
-
@@ -6530,8 +6547,8 @@ pre-formatted fixed-width code block written in the Python programming language reopenGeneralForumTopic
-Use this method to reopen a closed 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. The topic will be automatically unhidden if it was hidden. Returns True on success.
+reopenGeneralForumTopic
+Use this method to reopen a closed 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. The topic will be automatically unhidden if it was hidden. Returns True on success.
-
@@ -6550,8 +6567,8 @@ pre-formatted fixed-width code block written in the Python programming language hideGeneralForumTopic
-Use this method to hide the 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. The topic will be automatically closed if it was open. Returns True on success.
+hideGeneralForumTopic
+Use this method to hide the 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. The topic will be automatically closed if it was open. Returns True on success.
-
@@ -6570,8 +6587,8 @@ pre-formatted fixed-width code block written in the Python programming language unhideGeneralForumTopic
-Use this method to unhide the 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. Returns True on success.
+unhideGeneralForumTopic
+Use this method to unhide the 'General' topic in a forum supergroup chat. The bot must be an administrator in the chat for this to work and must have the can_manage_topics administrator rights. Returns True on success.
-
@@ -6590,7 +6607,7 @@ pre-formatted fixed-width code block written in the Python programming language answerCallbackQuery
+answerCallbackQuery
Use this method to send answers to callback queries sent from inline keyboards. The answer will be displayed to the user as a notification at the top of the chat screen or as an alert. On success, True is returned.
Alternatively, the user can be redirected to the specified Game URL. For this option to work, you must first create a game for your bot via @BotFather and accept the terms. Otherwise, you may use links like
@@ -6627,7 +6644,7 @@ pre-formatted fixed-width code block written in the Python programming languaget.me/your_bot?start=XXXX
that open your bot with a parameter.url String Optional -URL that will be opened by the user's client. If you have created a Game and accepted the conditions via @BotFather, specify the URL that opens your game - note that this will only work if the query comes from a callback_game button. +
Otherwise, you may use links liket.me/your_bot?start=XXXX
that open your bot with a parameter.URL that will be opened by the user's client. If you have created a Game and accepted the conditions via @BotFather, specify the URL that opens your game - note that this will only work if the query comes from a callback_game button.
Otherwise, you may use links liket.me/your_bot?start=XXXX
that open your bot with a parameter.cache_time @@ -6637,8 +6654,8 @@ pre-formatted fixed-width code block written in the Python programming languagesetMyCommands
-Use this method to change the list of the bot's commands. See this manual for more details about bot commands. Returns True on success.
+setMyCommands
+Use this method to change the list of the bot's commands. See this manual for more details about bot commands. Returns True on success.
-
@@ -6653,7 +6670,7 @@ pre-formatted fixed-width code block written in the Python programming language commands Array of BotCommand Yes -A JSON-serialized list of bot commands to be set as the list of the bot's commands. At most 100 commands can be specified. +A JSON-serialized list of bot commands to be set as the list of the bot's commands. At most 100 commands can be specified. scope @@ -6669,8 +6686,8 @@ pre-formatted fixed-width code block written in the Python programming languagedeleteMyCommands
-Use this method to delete the list of the bot's commands for the given scope and user language. After deletion, higher level commands will be shown to affected users. Returns True on success.
+deleteMyCommands
+Use this method to delete the list of the bot's commands for the given scope and user language. After deletion, higher level commands will be shown to affected users. Returns True on success.
-
@@ -6695,8 +6712,8 @@ pre-formatted fixed-width code block written in the Python programming language getMyCommands
-Use this method to get the current list of the bot's commands for the given scope and user language. Returns an Array of BotCommand objects. If commands aren't set, an empty list is returned.
+getMyCommands
+Use this method to get the current list of the bot's commands for the given scope and user language. Returns an Array of BotCommand objects. If commands aren't set, an empty list is returned.
-
@@ -6721,8 +6738,8 @@ pre-formatted fixed-width code block written in the Python programming language setMyName
-Use this method to change the bot's name. Returns True on success.
+setMyName
+Use this method to change the bot's name. Returns True on success.
-
@@ -6747,7 +6764,7 @@ pre-formatted fixed-width code block written in the Python programming language getMyName
+getMyName
Use this method to get the current bot name for the given user language. Returns BotName on success.
@@ -6767,8 +6784,8 @@ pre-formatted fixed-width code block written in the Python programming language
-setMyDescription
-Use this method to change the bot's description, which is shown in the chat with the bot if the chat is empty. Returns True on success.
+setMyDescription
+Use this method to change the bot's description, which is shown in the chat with the bot if the chat is empty. Returns True on success.
-
@@ -6793,7 +6810,7 @@ pre-formatted fixed-width code block written in the Python programming language getMyDescription
+getMyDescription
Use this method to get the current bot description for the given user language. Returns BotDescription on success.
@@ -6813,8 +6830,8 @@ pre-formatted fixed-width code block written in the Python programming language
-setMyShortDescription
-Use this method to change the bot's short description, which is shown on the bot's profile page and is sent together with the link when users share the bot. Returns True on success.
+setMyShortDescription
+Use this method to change the bot's short description, which is shown on the bot's profile page and is sent together with the link when users share the bot. Returns True on success.
-
@@ -6839,7 +6856,7 @@ pre-formatted fixed-width code block written in the Python programming language getMyShortDescription
+getMyShortDescription
Use this method to get the current bot short description for the given user language. Returns BotShortDescription on success.
@@ -6859,8 +6876,8 @@ pre-formatted fixed-width code block written in the Python programming language
-setChatMenuButton
-Use this method to change the bot's menu button in a private chat, or the default menu button. Returns True on success.
+setChatMenuButton
+Use this method to change the bot's menu button in a private chat, or the default menu button. Returns True on success.
-
@@ -6875,18 +6892,18 @@ pre-formatted fixed-width code block written in the Python programming language chat_id Integer Optional -Unique identifier for the target private chat. If not specified, default bot's menu button will be changed +Unique identifier for the target private chat. If not specified, default bot's menu button will be changed menu_button MenuButton Optional -A JSON-serialized object for the bot's new menu button. Defaults to MenuButtonDefault +A JSON-serialized object for the bot's new menu button. Defaults to MenuButtonDefault getChatMenuButton
-Use this method to get the current value of the bot's menu button in a private chat, or the default menu button. Returns MenuButton on success.
+getChatMenuButton
+Use this method to get the current value of the bot's menu button in a private chat, or the default menu button. Returns MenuButton on success.
-
@@ -6901,12 +6918,12 @@ pre-formatted fixed-width code block written in the Python programming language chat_id Integer Optional -Unique identifier for the target private chat. If not specified, default bot's menu button will be returned +Unique identifier for the target private chat. If not specified, default bot's menu button will be returned setMyDefaultAdministratorRights
-Use this method to change the default administrator rights requested by the bot when it's added as an administrator to groups or channels. These rights will be suggested to users, but they are free to modify the list before adding the bot. Returns True on success.
+setMyDefaultAdministratorRights
+Use this method to change the default administrator rights requested by the bot when it's added as an administrator to groups or channels. These rights will be suggested to users, but they are free to modify the list before adding the bot. Returns True on success.
-
@@ -6931,7 +6948,7 @@ pre-formatted fixed-width code block written in the Python programming language getMyDefaultAdministratorRights
+getMyDefaultAdministratorRights
Use this method to get the current default administrator rights of the bot. Returns ChatAdministratorRights on success.
@@ -6951,12 +6968,12 @@ pre-formatted fixed-width code block written in the Python programming language
-Inline mode methods
+Inline mode methods
Methods and objects used in the inline mode are described in the Inline mode section.
-Updating messages
+Updating messages
The following methods allow you to change an existing message in the message history instead of sending a new one with a result of an action. This is most useful for messages with inline keyboards using callback queries, but can also help reduce clutter in conversations with regular chat bots.
Please note, that it is currently only possible to edit messages without reply_markup or with inline keyboards.
-editMessageText
+editMessageText
Use this method to edit text and game messages. On success, if the edited message is not an inline message, the edited Message is returned, otherwise True is returned.
@@ -7018,7 +7035,7 @@ pre-formatted fixed-width code block written in the Python programming language
-editMessageCaption
+editMessageCaption
Use this method to edit captions of messages. On success, if the edited message is not an inline message, the edited Message is returned, otherwise True is returned.
@@ -7074,8 +7091,8 @@ pre-formatted fixed-width code block written in the Python programming language
-editMessageMedia
-Use this method to edit animation, audio, document, photo, or video messages. If a message is part of a message album, then it can be edited only to an audio for audio albums, only to a document for document albums and to a photo or a video otherwise. When an inline message is edited, a new file can't be uploaded; use a previously uploaded file via its file_id or specify a URL. On success, if the edited message is not an inline message, the edited Message is returned, otherwise True is returned.
+editMessageMedia
+Use this method to edit animation, audio, document, photo, or video messages. If a message is part of a message album, then it can be edited only to an audio for audio albums, only to a document for document albums and to a photo or a video otherwise. When an inline message is edited, a new file can't be uploaded; use a previously uploaded file via its file_id or specify a URL. On success, if the edited message is not an inline message, the edited Message is returned, otherwise True is returned.
-
@@ -7118,7 +7135,7 @@ pre-formatted fixed-width code block written in the Python programming language editMessageLiveLocation
+editMessageLiveLocation
Use this method to edit live location messages. A location can be edited until its live_period expires or editing is explicitly disabled by a call to stopMessageLiveLocation. On success, if the edited message is not an inline message, the edited Message is returned, otherwise True is returned.
@@ -7186,7 +7203,7 @@ pre-formatted fixed-width code block written in the Python programming language
-stopMessageLiveLocation
+stopMessageLiveLocation
Use this method to stop updating a live location message before live_period expires. On success, if the message is not an inline message, the edited Message is returned, otherwise True is returned.
@@ -7224,7 +7241,7 @@ pre-formatted fixed-width code block written in the Python programming language
-editMessageReplyMarkup
+editMessageReplyMarkup
Use this method to edit only the reply markup of messages. On success, if the edited message is not an inline message, the edited Message is returned, otherwise True is returned.
@@ -7262,7 +7279,7 @@ pre-formatted fixed-width code block written in the Python programming language
-stopPoll
+stopPoll
Use this method to stop a poll which was sent by the bot. On success, the stopped Poll is returned.
@@ -7294,8 +7311,19 @@ pre-formatted fixed-width code block written in the Python programming language
-deleteMessage
-Use this method to delete a message, including service messages, with the following limitations:
+
- A message can only be deleted if it was sent less than 48 hours ago.
- Service messages about a supergroup, channel, or forum topic creation can't be deleted.
- A dice message in a private chat can only be deleted if it was sent more than 24 hours ago.
- Bots can delete outgoing messages in private chats, groups, and supergroups.
- Bots can delete incoming messages in private chats.
- Bots granted can_post_messages permissions can delete outgoing messages in channels.
- If the bot is an administrator of a group, it can delete any message there.
- If the bot has can_delete_messages permission in a supergroup or a channel, it can delete any message there.
Returns True on success.deleteMessage
+Use this method to delete a message, including service messages, with the following limitations:
++
- A message can only be deleted if it was sent less than 48 hours ago.
+- Service messages about a supergroup, channel, or forum topic creation can't be deleted.
+- A dice message in a private chat can only be deleted if it was sent more than 24 hours ago.
+- Bots can delete outgoing messages in private chats, groups, and supergroups.
+- Bots can delete incoming messages in private chats.
+- Bots granted can_post_messages permissions can delete outgoing messages in channels.
+- If the bot is an administrator of a group, it can delete any message there.
+- If the bot has can_delete_messages permission in a supergroup or a channel, it can delete any message there. +Returns True on success.
+-
@@ -7320,9 +7348,9 @@ pre-formatted fixed-width code block written in the Python programming language Stickers
+Stickers
The following methods and objects allow your bot to handle stickers and sticker sets.
-Sticker
+Sticker
This object represents a sticker.
@@ -7341,12 +7369,12 @@ pre-formatted fixed-width code block written in the Python programming language
-file_unique_id String -Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. +Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. type String -Type of the sticker, currently one of “regular”, “mask”, “custom_emoji”. The type of the sticker is independent from its format, which is determined by the fields is_animated and is_video. +Type of the sticker, currently one of "regular", "mask", "custom_emoji". The type of the sticker is independent from its format, which is determined by the fields is_animated and is_video. width @@ -7410,7 +7438,7 @@ pre-formatted fixed-width code block written in the Python programming languageStickerSet
+StickerSet
This object represents a sticker set.
@@ -7434,7 +7462,7 @@ pre-formatted fixed-width code block written in the Python programming language
-sticker_type String -Type of stickers in the set, currently one of “regular”, “mask”, “custom_emoji” +Type of stickers in the set, currently one of "regular", "mask", "custom_emoji" is_animated @@ -7458,7 +7486,7 @@ pre-formatted fixed-width code block written in the Python programming languageMaskPosition
+MaskPosition
This object describes the position on faces where a mask should be placed by default.
@@ -7472,7 +7500,7 @@ pre-formatted fixed-width code block written in the Python programming language
-point String -The part of the face relative to which the mask should be placed. One of “forehead”, “eyes”, “mouth”, or “chin”. +The part of the face relative to which the mask should be placed. One of "forehead", "eyes", "mouth", or "chin". x_shift @@ -7491,7 +7519,7 @@ pre-formatted fixed-width code block written in the Python programming languageInputSticker
+InputSticker
This object describes a sticker to be added to a sticker set.
@@ -7505,7 +7533,7 @@ pre-formatted fixed-width code block written in the Python programming language
-sticker InputFile or String -The added sticker. Pass a file_id as a String to send a file that already exists on the Telegram servers, pass an HTTP URL as a String for Telegram to get a file from the Internet, upload a new one using multipart/form-data, or pass “attach://<file_attach_name>” to upload a new one using multipart/form-data under <file_attach_name> name. Animated and video stickers can't be uploaded via HTTP URL. More information on Sending Files » +The added sticker. Pass a file_id as a String to send a file that already exists on the Telegram servers, pass an HTTP URL as a String for Telegram to get a file from the Internet, upload a new one using multipart/form-data, or pass "attach://<file_attach_name>" to upload a new one using multipart/form-data under <file_attach_name> name. Animated and video stickers can't be uploaded via HTTP URL. More information on Sending Files » emoji_list @@ -7515,16 +7543,16 @@ pre-formatted fixed-width code block written in the Python programming languagemask_position MaskPosition -Optional. Position where the mask should be placed on faces. For “mask” stickers only. +Optional. Position where the mask should be placed on faces. For "mask" stickers only. keywords Array of String -Optional. List of 0-20 search keywords for the sticker with total length of up to 64 characters. For “regular” and “custom_emoji” stickers only. +Optional. List of 0-20 search keywords for the sticker with total length of up to 64 characters. For "regular" and "custom_emoji" stickers only. sendSticker
+sendSticker
Use this method to send static .WEBP, animated .TGS, or video .WEBM stickers. On success, the sent Message is returned.
@@ -7552,7 +7580,7 @@ pre-formatted fixed-width code block written in the Python programming language
-sticker InputFile or String Yes -Sticker to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a .WEBP sticker from the Internet, or upload a new .WEBP or .TGS sticker using multipart/form-data. More information on Sending Files ». Video stickers can only be sent by a file_id. Animated stickers can't be sent via an HTTP URL. +Sticker to send. Pass a file_id as String to send a file that exists on the Telegram servers (recommended), pass an HTTP URL as a String for Telegram to get a .WEBP sticker from the Internet, or upload a new .WEBP or .TGS sticker using multipart/form-data. More information on Sending Files ». Video stickers can only be sent by a file_id. Animated stickers can't be sent via an HTTP URL. emoji @@ -7592,7 +7620,7 @@ pre-formatted fixed-width code block written in the Python programming languagegetStickerSet
+getStickerSet
Use this method to get a sticker set. On success, a StickerSet object is returned.
@@ -7612,7 +7640,7 @@ pre-formatted fixed-width code block written in the Python programming language
-getCustomEmojiStickers
+getCustomEmojiStickers
Use this method to get information about custom emoji stickers by their identifiers. Returns an Array of Sticker objects.
@@ -7632,7 +7660,7 @@ pre-formatted fixed-width code block written in the Python programming language
-uploadStickerFile
+uploadStickerFile
Use this method to upload a file with a sticker for later use in the createNewStickerSet and addStickerToSet methods (the file can be used multiple times). Returns the uploaded File on success.
@@ -7654,17 +7682,17 @@ pre-formatted fixed-width code block written in the Python programming language
-sticker InputFile Yes -A file with the sticker in .WEBP, .PNG, .TGS, or .WEBM format. See https://core.telegram.org/stickers for technical requirements. More information on Sending Files » +A file with the sticker in .WEBP, .PNG, .TGS, or .WEBM format. See https://core.telegram.org/stickers for technical requirements. More information on Sending Files » sticker_format String Yes -Format of the sticker, must be one of “static”, “animated”, “video” +Format of the sticker, must be one of "static", "animated", "video" createNewStickerSet
+createNewStickerSet
Use this method to create a new sticker set owned by a user. The bot will be able to edit the sticker set thus created. Returns True on success.
@@ -7686,7 +7714,7 @@ pre-formatted fixed-width code block written in the Python programming language
-name String Yes -Short name of sticker set, to be used in +t.me/addstickers/
URLs (e.g., animals). Can contain only English letters, digits and underscores. Must begin with a letter, can't contain consecutive underscores and must end in"_by_<bot_username>"
.<bot_username>
is case insensitive. 1-64 characters.Short name of sticker set, to be used in t.me/addstickers/
URLs (e.g., animals). Can contain only English letters, digits and underscores. Must begin with a letter, can't contain consecutive underscores and must end in"_by_<bot_username>"
.<bot_username>
is case insensitive. 1-64 characters.title @@ -7704,13 +7732,13 @@ pre-formatted fixed-width code block written in the Python programming languagesticker_format String Yes -Format of stickers in the set, must be one of “static”, “animated”, “video” +Format of stickers in the set, must be one of "static", "animated", "video" sticker_type String Optional -Type of stickers in the set, pass “regular”, “mask”, or “custom_emoji”. By default, a regular sticker set is created. +Type of stickers in the set, pass "regular", "mask", or "custom_emoji". By default, a regular sticker set is created. needs_repainting @@ -7720,7 +7748,7 @@ pre-formatted fixed-width code block written in the Python programming languageaddStickerToSet
+addStickerToSet
Use this method to add a new sticker to a set created by the bot. The format of the added sticker must match the format of the other stickers in the set. Emoji sticker sets can have up to 200 stickers. Animated and video sticker sets can have up to 50 stickers. Static sticker sets can have up to 120 stickers. Returns True on success.
@@ -7748,11 +7776,11 @@ pre-formatted fixed-width code block written in the Python programming language
-sticker InputSticker Yes -A JSON-serialized object with information about the added sticker. If exactly the same sticker had already been added to the set, then the set isn't changed. +A JSON-serialized object with information about the added sticker. If exactly the same sticker had already been added to the set, then the set isn't changed. setStickerPositionInSet
+setStickerPositionInSet
Use this method to move a sticker in a set created by the bot to a specific position. Returns True on success.
@@ -7778,7 +7806,7 @@ pre-formatted fixed-width code block written in the Python programming language
-deleteStickerFromSet
+deleteStickerFromSet
Use this method to delete a sticker from a set created by the bot. Returns True on success.
@@ -7798,7 +7826,7 @@ pre-formatted fixed-width code block written in the Python programming language
-setStickerEmojiList
+setStickerEmojiList
Use this method to change the list of emoji assigned to a regular or custom emoji sticker. The sticker must belong to a sticker set created by the bot. Returns True on success.
@@ -7824,7 +7852,7 @@ pre-formatted fixed-width code block written in the Python programming language
-setStickerKeywords
+setStickerKeywords
Use this method to change search keywords assigned to a regular or custom emoji sticker. The sticker must belong to a sticker set created by the bot. Returns True on success.
@@ -7850,7 +7878,7 @@ pre-formatted fixed-width code block written in the Python programming language
-setStickerMaskPosition
+setStickerMaskPosition
Use this method to change the mask position of a mask sticker. The sticker must belong to a sticker set that was created by the bot. Returns True on success.
@@ -7876,7 +7904,7 @@ pre-formatted fixed-width code block written in the Python programming language
-setStickerSetTitle
+setStickerSetTitle
Use this method to set the title of a created sticker set. Returns True on success.
@@ -7902,7 +7930,7 @@ pre-formatted fixed-width code block written in the Python programming language
-setStickerSetThumbnail
+setStickerSetThumbnail
Use this method to set the thumbnail of a regular or mask sticker set. The format of the thumbnail file must match the format of the stickers in the set. Returns True on success.
@@ -7930,11 +7958,11 @@ pre-formatted fixed-width code block written in the Python programming language
-thumbnail InputFile or String Optional -A .WEBP or .PNG image with the thumbnail, must be up to 128 kilobytes in size and have a width and height of exactly 100px, or a .TGS animation with a thumbnail up to 32 kilobytes in size (see https://core.telegram.org/stickers#animated-sticker-requirements for animated sticker technical requirements), or a WEBM video with the thumbnail up to 32 kilobytes in size; see https://core.telegram.org/stickers#video-sticker-requirements for video sticker technical requirements. Pass a file_id as a String to send a file that already exists on the Telegram servers, pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. More information on Sending Files ». Animated and video sticker set thumbnails can't be uploaded via HTTP URL. If omitted, then the thumbnail is dropped and the first sticker is used as the thumbnail. +A .WEBP or .PNG image with the thumbnail, must be up to 128 kilobytes in size and have a width and height of exactly 100px, or a .TGS animation with a thumbnail up to 32 kilobytes in size (see https://core.telegram.org/stickers#animated-sticker-requirements for animated sticker technical requirements), or a WEBM video with the thumbnail up to 32 kilobytes in size; see https://core.telegram.org/stickers#video-sticker-requirements for video sticker technical requirements. Pass a file_id as a String to send a file that already exists on the Telegram servers, pass an HTTP URL as a String for Telegram to get a file from the Internet, or upload a new one using multipart/form-data. More information on Sending Files ». Animated and video sticker set thumbnails can't be uploaded via HTTP URL. If omitted, then the thumbnail is dropped and the first sticker is used as the thumbnail. setCustomEmojiStickerSetThumbnail
+setCustomEmojiStickerSetThumbnail
Use this method to set the thumbnail of a custom emoji sticker set. Returns True on success.
@@ -7960,7 +7988,7 @@ pre-formatted fixed-width code block written in the Python programming language
-deleteStickerSet
+deleteStickerSet
Use this method to delete a sticker set that was created by the bot. Returns True on success.
@@ -7980,10 +8008,11 @@ pre-formatted fixed-width code block written in the Python programming language
-Inline mode
-The following methods and objects allow your bot to work in inline mode.
-
Please see our Introduction to Inline bots for more details.To enable this option, send the
-/setinline
command to @BotFather and provide the placeholder text that the user will see in the input field after typing your bot's name.InlineQuery
+Inline mode
+The following methods and objects allow your bot to work in inline mode. +Please see our Introduction to Inline bots for more details.
+To enable this option, send the
+/setinline
command to @BotFather and provide the placeholder text that the user will see in the input field after typing your bot's name.InlineQuery
This object represents an incoming inline query. When the user sends an empty query, your bot could return some default or trending results.
@@ -8017,7 +8046,7 @@ pre-formatted fixed-width code block written in the Python programming language
-chat_type String -Optional. Type of the chat from which the inline query was sent. Can be either “sender” for a private chat with the inline query sender, “private”, “group”, “supergroup”, or “channel”. The chat type should be always known for requests sent from official clients and most third-party clients, unless the request was sent from a secret chat +Optional. Type of the chat from which the inline query was sent. Can be either "sender" for a private chat with the inline query sender, "private", "group", "supergroup", or "channel". The chat type should be always known for requests sent from official clients and most third-party clients, unless the request was sent from a secret chat location @@ -8026,8 +8055,9 @@ pre-formatted fixed-width code block written in the Python programming languageanswerInlineQuery
-Use this method to send answers to an inline query. On success, True is returned.
+
No more than 50 results per query are allowed.answerInlineQuery
+Use this method to send answers to an inline query. On success, True is returned. +No more than 50 results per query are allowed.
-
@@ -8066,7 +8096,7 @@ pre-formatted fixed-width code block written in the Python programming language next_offset String Optional -Pass the offset that a client should send in the next query with the same text to receive more results. Pass an empty string if there are no more results or if you don't support pagination. Offset length can't exceed 64 bytes. +Pass the offset that a client should send in the next query with the same text to receive more results. Pass an empty string if there are no more results or if you don't support pagination. Offset length can't exceed 64 bytes. button @@ -8076,7 +8106,7 @@ pre-formatted fixed-width code block written in the Python programming languageInlineQueryResultsButton
+InlineQueryResultsButton
This object represents a button to be shown above inline query results. You must use exactly one of the optional fields.
@@ -8100,11 +8130,11 @@ pre-formatted fixed-width code block written in the Python programming language
-start_parameter String -Optional. Deep-linking parameter for the /start message sent to the bot when a user presses the button. 1-64 characters, only +A-Z
,a-z
,0-9
,_
and-
are allowed.
Example: An inline bot that sends YouTube videos can ask the user to connect the bot to their YouTube account to adapt search results accordingly. To do this, it displays a 'Connect your YouTube account' button above the results, or even before showing any. The user presses the button, switches to a private chat with the bot and, in doing so, passes a start parameter that instructs the bot to return an OAuth link. Once done, the bot can offer a switch_inline button so that the user can easily return to the chat where they wanted to use the bot's inline capabilities.Optional. Deep-linking parameter for the /start message sent to the bot when a user presses the button. 1-64 characters, only A-Z
,a-z
,0-9
,_
and-
are allowed.
Example: An inline bot that sends YouTube videos can ask the user to connect the bot to their YouTube account to adapt search results accordingly. To do this, it displays a 'Connect your YouTube account' button above the results, or even before showing any. The user presses the button, switches to a private chat with the bot and, in doing so, passes a start parameter that instructs the bot to return an OAuth link. Once done, the bot can offer a switch_inline button so that the user can easily return to the chat where they wanted to use the bot's inline capabilities.InlineQueryResult
+InlineQueryResult
This object represents one result of an inline query. Telegram clients currently support results of the following 20 types:
- InlineQueryResultCachedAudio
@@ -8129,7 +8159,7 @@ pre-formatted fixed-width code block written in the Python programming language- InlineQueryResultVoice
Note: All URLs passed in inline query results will be available to end users and therefore must be assumed to be public.
-InlineQueryResultArticle
+InlineQueryResultArticle
Represents a link to an article or web page.
@@ -8173,7 +8203,7 @@ pre-formatted fixed-width code block written in the Python programming language
-hide_url Boolean -Optional. Pass True if you don't want the URL to be shown in the message +Optional. Pass True if you don't want the URL to be shown in the message description @@ -8197,7 +8227,7 @@ pre-formatted fixed-width code block written in the Python programming languageInlineQueryResultPhoto
+InlineQueryResultPhoto
Represents a link to a photo. By default, this photo will be sent by the user with optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the photo.
@@ -8275,7 +8305,7 @@ pre-formatted fixed-width code block written in the Python programming language
-InlineQueryResultGif
+InlineQueryResultGif
Represents a link to an animated GIF file. By default, this animated GIF file will be sent by the user with optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the animation.
@@ -8324,7 +8354,7 @@ pre-formatted fixed-width code block written in the Python programming language
-thumbnail_mime_type String -Optional. MIME type of the thumbnail, must be one of “image/jpeg”, “image/gif”, or “video/mp4”. Defaults to “image/jpeg” +Optional. MIME type of the thumbnail, must be one of "image/jpeg", "image/gif", or "video/mp4". Defaults to "image/jpeg" title @@ -8358,7 +8388,7 @@ pre-formatted fixed-width code block written in the Python programming languageInlineQueryResultMpeg4Gif
+InlineQueryResultMpeg4Gif
Represents a link to a video animation (H.264/MPEG-4 AVC video without sound). By default, this animated MPEG-4 file will be sent by the user with optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the animation.
@@ -8407,7 +8437,7 @@ pre-formatted fixed-width code block written in the Python programming language
-thumbnail_mime_type String -Optional. MIME type of the thumbnail, must be one of “image/jpeg”, “image/gif”, or “video/mp4”. Defaults to “image/jpeg” +Optional. MIME type of the thumbnail, must be one of "image/jpeg", "image/gif", or "video/mp4". Defaults to "image/jpeg" title @@ -8441,7 +8471,7 @@ pre-formatted fixed-width code block written in the Python programming languageInlineQueryResultVideo
+InlineQueryResultVideo
Represents a link to a page containing an embedded video player or a video file. By default, this video file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the video.
If an InlineQueryResultVideo message contains an embedded video (e.g., YouTube), you must replace its content using input_message_content.
@@ -8473,7 +8503,7 @@ pre-formatted fixed-width code block written in the Python programming languagemime_type String -MIME type of the content of the video URL, “text/html” or “video/mp4” +MIME type of the content of the video URL, "text/html" or "video/mp4" - thumbnail_url @@ -8532,7 +8562,7 @@ pre-formatted fixed-width code block written in the Python programming languageInlineQueryResultAudio
+InlineQueryResultAudio
Represents a link to an MP3 audio file. By default, this audio file will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the audio.
@@ -8601,7 +8631,7 @@ pre-formatted fixed-width code block written in the Python programming language
Note: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.
-InlineQueryResultVoice
+InlineQueryResultVoice
Represents a link to a voice recording in an .OGG container encoded with OPUS. By default, this voice recording will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the the voice message.
@@ -8665,7 +8695,7 @@ pre-formatted fixed-width code block written in the Python programming language
Note: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.
-InlineQueryResultDocument
+InlineQueryResultDocument
Represents a link to a file. By default, this file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the file. Currently, only .PDF and .ZIP files can be sent using this method.
@@ -8714,7 +8744,7 @@ pre-formatted fixed-width code block written in the Python programming language
mime_type String -MIME type of the content of the file, either “application/pdf” or “application/zip” +MIME type of the content of the file, either "application/pdf" or "application/zip" description @@ -8749,7 +8779,7 @@ pre-formatted fixed-width code block written in the Python programming languageNote: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.
-InlineQueryResultLocation
+InlineQueryResultLocation
Represents a location on a map. By default, the location will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the location.
@@ -8833,7 +8863,7 @@ pre-formatted fixed-width code block written in the Python programming language
Note: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.
-InlineQueryResultVenue
+InlineQueryResultVenue
Represents a venue. By default, the venue will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the venue.
@@ -8882,7 +8912,7 @@ pre-formatted fixed-width code block written in the Python programming language
foursquare_type String -Optional. Foursquare type of the venue, if known. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.) +Optional. Foursquare type of the venue, if known. (For example, "arts_entertainment/default", "arts_entertainment/aquarium" or "food/icecream".) google_place_id @@ -8922,7 +8952,7 @@ pre-formatted fixed-width code block written in the Python programming languageNote: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.
-InlineQueryResultContact
+InlineQueryResultContact
Represents a contact with a phone number. By default, this contact will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the contact.
@@ -8946,17 +8976,17 @@ pre-formatted fixed-width code block written in the Python programming language
phone_number String -Contact's phone number +Contact's phone number first_name String -Contact's first name +Contact's first name last_name String -Optional. Contact's last name +Optional. Contact's last name vcard @@ -8991,7 +9021,7 @@ pre-formatted fixed-width code block written in the Python programming languageNote: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.
-InlineQueryResultGame
+InlineQueryResultGame
Represents a Game.
@@ -9025,7 +9055,7 @@ pre-formatted fixed-width code block written in the Python programming language
Note: This will only work in Telegram versions released after October 1, 2016. Older clients will not display any inline results if a game result is among them.
-InlineQueryResultCachedPhoto
+InlineQueryResultCachedPhoto
Represents a link to a photo stored on the Telegram servers. By default, this photo will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the photo.
@@ -9088,7 +9118,7 @@ pre-formatted fixed-width code block written in the Python programming language
-InlineQueryResultCachedGif
+InlineQueryResultCachedGif
Represents a link to an animated GIF file stored on the Telegram servers. By default, this animated GIF file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with specified content instead of the animation.
@@ -9146,7 +9176,7 @@ pre-formatted fixed-width code block written in the Python programming language
-InlineQueryResultCachedMpeg4Gif
+InlineQueryResultCachedMpeg4Gif
Represents a link to a video animation (H.264/MPEG-4 AVC video without sound) stored on the Telegram servers. By default, this animated MPEG-4 file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the animation.
@@ -9204,7 +9234,7 @@ pre-formatted fixed-width code block written in the Python programming language
-InlineQueryResultCachedSticker
+InlineQueryResultCachedSticker
Represents a link to a sticker stored on the Telegram servers. By default, this sticker will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the sticker.
@@ -9243,7 +9273,7 @@ pre-formatted fixed-width code block written in the Python programming language
Note: This will only work in Telegram versions released after 9 April, 2016 for static stickers and after 06 July, 2019 for animated stickers. Older clients will ignore them.
-InlineQueryResultCachedDocument
+InlineQueryResultCachedDocument
Represents a link to a file stored on the Telegram servers. By default, this file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the file.
@@ -9307,7 +9337,7 @@ pre-formatted fixed-width code block written in the Python programming language
Note: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.
-InlineQueryResultCachedVideo
+InlineQueryResultCachedVideo
Represents a link to a video file stored on the Telegram servers. By default, this video file will be sent by the user with an optional caption. Alternatively, you can use input_message_content to send a message with the specified content instead of the video.
@@ -9370,7 +9400,7 @@ pre-formatted fixed-width code block written in the Python programming language
-InlineQueryResultCachedVoice
+InlineQueryResultCachedVoice
Represents a link to a voice message stored on the Telegram servers. By default, this voice message will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the voice message.
@@ -9429,7 +9459,7 @@ pre-formatted fixed-width code block written in the Python programming language
Note: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.
-InlineQueryResultCachedAudio
+InlineQueryResultCachedAudio
Represents a link to an MP3 audio file stored on the Telegram servers. By default, this audio file will be sent by the user. Alternatively, you can use input_message_content to send a message with the specified content instead of the audio.
@@ -9483,7 +9513,7 @@ pre-formatted fixed-width code block written in the Python programming language
Note: This will only work in Telegram versions released after 9 April, 2016. Older clients will ignore them.
-InputMessageContent
+InputMessageContent
This object represents the content of a message to be sent as a result of an inline query. Telegram clients currently support the following 5 types:
-
- InputTextMessageContent
@@ -9492,7 +9522,7 @@ pre-formatted fixed-width code block written in the Python programming language- InputContactMessageContent
- InputInvoiceMessageContent
InputTextMessageContent
+InputTextMessageContent
Represents the content of a text message to be sent as the result of an inline query.
@@ -9525,7 +9555,7 @@ pre-formatted fixed-width code block written in the Python programming language
-InputLocationMessageContent
+InputLocationMessageContent
Represents the content of a location message to be sent as the result of an inline query.
@@ -9568,7 +9598,7 @@ pre-formatted fixed-width code block written in the Python programming language
-InputVenueMessageContent
+InputVenueMessageContent
Represents the content of a venue message to be sent as the result of an inline query.
@@ -9607,7 +9637,7 @@ pre-formatted fixed-width code block written in the Python programming language
-foursquare_type String -Optional. Foursquare type of the venue, if known. (For example, “arts_entertainment/default”, “arts_entertainment/aquarium” or “food/icecream”.) +Optional. Foursquare type of the venue, if known. (For example, "arts_entertainment/default", "arts_entertainment/aquarium" or "food/icecream".) google_place_id @@ -9621,7 +9651,7 @@ pre-formatted fixed-width code block written in the Python programming languageInputContactMessageContent
+InputContactMessageContent
Represents the content of a contact message to be sent as the result of an inline query.
@@ -9635,17 +9665,17 @@ pre-formatted fixed-width code block written in the Python programming language
-phone_number String -Contact's phone number +Contact's phone number first_name String -Contact's first name +Contact's first name last_name String -Optional. Contact's last name +Optional. Contact's last name vcard @@ -9654,7 +9684,7 @@ pre-formatted fixed-width code block written in the Python programming languageInputInvoiceMessageContent
+InputInvoiceMessageContent
Represents the content of an invoice message to be sent as the result of an inline query.
@@ -9733,32 +9763,32 @@ pre-formatted fixed-width code block written in the Python programming language
-need_name Boolean -Optional. Pass True if you require the user's full name to complete the order +Optional. Pass True if you require the user's full name to complete the order need_phone_number Boolean -Optional. Pass True if you require the user's phone number to complete the order +Optional. Pass True if you require the user's phone number to complete the order need_email Boolean -Optional. Pass True if you require the user's email address to complete the order +Optional. Pass True if you require the user's email address to complete the order need_shipping_address Boolean -Optional. Pass True if you require the user's shipping address to complete the order +Optional. Pass True if you require the user's shipping address to complete the order send_phone_number_to_provider Boolean -Optional. Pass True if the user's phone number should be sent to provider +Optional. Pass True if the user's phone number should be sent to provider send_email_to_provider Boolean -Optional. Pass True if the user's email address should be sent to provider +Optional. Pass True if the user's email address should be sent to provider is_flexible @@ -9767,7 +9797,7 @@ pre-formatted fixed-width code block written in the Python programming languageChosenInlineResult
+ChosenInlineResult
Represents a result of an inline query that was chosen by the user and sent to their chat partner.
@@ -9806,7 +9836,7 @@ pre-formatted fixed-width code block written in the Python programming language
Note: It is necessary to enable inline feedback via @BotFather in order to receive these objects in updates.
-answerWebAppQuery
+answerWebAppQuery
Use this method to set the result of an interaction with a Web App and send a corresponding message on behalf of the user to the chat from which the query originated. On success, a SentWebAppMessage object is returned.
@@ -9832,7 +9862,7 @@ pre-formatted fixed-width code block written in the Python programming language
-SentWebAppMessage
+SentWebAppMessage
Describes an inline message sent by a Web App on behalf of a user.
@@ -9850,9 +9880,9 @@ pre-formatted fixed-width code block written in the Python programming language
-Payments
+Payments
Your bot can accept payments from Telegram users. Please see the introduction to payments for more details on the process and how to set up payments for your bot. Please note that users will need Telegram v.4.0 or higher to use payments (released on May 18, 2017).
-sendInvoice
+sendInvoice
Use this method to send invoices. On success, the sent Message is returned.
@@ -9964,37 +9994,37 @@ pre-formatted fixed-width code block written in the Python programming language
-need_name Boolean Optional -Pass True if you require the user's full name to complete the order +Pass True if you require the user's full name to complete the order need_phone_number Boolean Optional -Pass True if you require the user's phone number to complete the order +Pass True if you require the user's phone number to complete the order need_email Boolean Optional -Pass True if you require the user's email address to complete the order +Pass True if you require the user's email address to complete the order need_shipping_address Boolean Optional -Pass True if you require the user's shipping address to complete the order +Pass True if you require the user's shipping address to complete the order send_phone_number_to_provider Boolean Optional -Pass True if the user's phone number should be sent to provider +Pass True if the user's phone number should be sent to provider send_email_to_provider Boolean Optional -Pass True if the user's email address should be sent to provider +Pass True if the user's email address should be sent to provider is_flexible @@ -10030,11 +10060,11 @@ pre-formatted fixed-width code block written in the Python programming languagereply_markup InlineKeyboardMarkup Optional -A JSON-serialized object for an inline keyboard. If empty, one 'Pay +total price
' button will be shown. If not empty, the first button must be a Pay button.A JSON-serialized object for an inline keyboard. If empty, one 'Pay total price
' button will be shown. If not empty, the first button must be a Pay button.createInvoiceLink
+createInvoiceLink
Use this method to create a link for an invoice. Returns the created invoice link as String on success.
@@ -10128,37 +10158,37 @@ pre-formatted fixed-width code block written in the Python programming language
-need_name Boolean Optional -Pass True if you require the user's full name to complete the order +Pass True if you require the user's full name to complete the order need_phone_number Boolean Optional -Pass True if you require the user's phone number to complete the order +Pass True if you require the user's phone number to complete the order need_email Boolean Optional -Pass True if you require the user's email address to complete the order +Pass True if you require the user's email address to complete the order need_shipping_address Boolean Optional -Pass True if you require the user's shipping address to complete the order +Pass True if you require the user's shipping address to complete the order send_phone_number_to_provider Boolean Optional -Pass True if the user's phone number should be sent to the provider +Pass True if the user's phone number should be sent to the provider send_email_to_provider Boolean Optional -Pass True if the user's email address should be sent to the provider +Pass True if the user's email address should be sent to the provider is_flexible @@ -10168,7 +10198,7 @@ pre-formatted fixed-width code block written in the Python programming languageanswerShippingQuery
+answerShippingQuery
If you sent an invoice requesting a shipping address and the parameter is_flexible was specified, the Bot API will send an Update with a shipping_query field to the bot. Use this method to reply to shipping queries. On success, True is returned.
@@ -10202,11 +10232,11 @@ pre-formatted fixed-width code block written in the Python programming language
-error_message String Optional -Required if ok is False. Error message in human readable form that explains why it is impossible to complete the order (e.g. "Sorry, delivery to your desired address is unavailable'). Telegram will display this message to the user. +Required if ok is False. Error message in human readable form that explains why it is impossible to complete the order (e.g. "Sorry, delivery to your desired address is unavailable'). Telegram will display this message to the user. answerPreCheckoutQuery
+answerPreCheckoutQuery
Once the user has confirmed their payment and shipping details, the Bot API sends the final confirmation in the form of an Update with the field pre_checkout_query. Use this method to respond to such pre-checkout queries. On success, True is returned. Note: The Bot API must receive an answer within 10 seconds after the pre-checkout query was sent.
@@ -10234,11 +10264,11 @@ pre-formatted fixed-width code block written in the Python programming language
-error_message String Optional -Required if ok is False. Error message in human readable form that explains the reason for failure to proceed with the checkout (e.g. "Sorry, somebody just bought the last of our amazing black T-shirts while you were busy filling out your payment details. Please choose a different color or garment!"). Telegram will display this message to the user. +Required if ok is False. Error message in human readable form that explains the reason for failure to proceed with the checkout (e.g. "Sorry, somebody just bought the last of our amazing black T-shirts while you were busy filling out your payment details. Please choose a different color or garment!"). Telegram will display this message to the user. LabeledPrice
+LabeledPrice
This object represents a portion of the price for goods or services.
@@ -10261,7 +10291,7 @@ pre-formatted fixed-width code block written in the Python programming language
-Invoice
+Invoice
This object contains basic information about an invoice.
@@ -10299,7 +10329,7 @@ pre-formatted fixed-width code block written in the Python programming language
-ShippingAddress
+ShippingAddress
This object represents a shipping address.
@@ -10342,7 +10372,7 @@ pre-formatted fixed-width code block written in the Python programming language
-OrderInfo
+OrderInfo
This object represents information about an order.
@@ -10361,7 +10391,7 @@ pre-formatted fixed-width code block written in the Python programming language
-phone_number String -Optional. User's phone number +Optional. User's phone number ShippingOption
+ShippingOption
This object represents one shipping option.
@@ -10403,7 +10433,7 @@ pre-formatted fixed-width code block written in the Python programming language
-SuccessfulPayment
+SuccessfulPayment
This object contains basic information about a successful payment.
@@ -10451,7 +10481,7 @@ pre-formatted fixed-width code block written in the Python programming language
-ShippingQuery
+ShippingQuery
This object contains information about an incoming shipping query.
@@ -10484,7 +10514,7 @@ pre-formatted fixed-width code block written in the Python programming language
-PreCheckoutQuery
+PreCheckoutQuery
This object contains information about an incoming pre-checkout query.
@@ -10532,9 +10562,9 @@ pre-formatted fixed-width code block written in the Python programming language
-Telegram Passport
+Telegram Passport
Telegram Passport is a unified authorization method for services that require personal identification. Users can upload their documents once, then instantly share their data with services that require real-world ID (finance, ICOs, etc.). Please see the manual for details.
-PassportData
+PassportData
Describes Telegram Passport data shared with the bot by the user.
@@ -10557,8 +10587,8 @@ pre-formatted fixed-width code block written in the Python programming language
-PassportFile
-This object represents a file uploaded to Telegram Passport. Currently all Telegram Passport files are in JPEG format when decrypted and don't exceed 10MB.
+PassportFile
+This object represents a file uploaded to Telegram Passport. Currently all Telegram Passport files are in JPEG format when decrypted and don't exceed 10MB.
-
@@ -10576,7 +10606,7 @@ pre-formatted fixed-width code block written in the Python programming language file_unique_id String -Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. +Unique identifier for this file, which is supposed to be the same over time and for different bots. Can't be used to download or reuse the file. file_size @@ -10590,7 +10620,7 @@ pre-formatted fixed-width code block written in the Python programming languageEncryptedPassportElement
+EncryptedPassportElement
Describes documents or other Telegram Passport elements shared with the bot by the user.
@@ -10604,47 +10634,47 @@ pre-formatted fixed-width code block written in the Python programming language
-type String -Element type. One of “personal_details”, “passport”, “driver_license”, “identity_card”, “internal_passport”, “address”, “utility_bill”, “bank_statement”, “rental_agreement”, “passport_registration”, “temporary_registration”, “phone_number”, “email”. +Element type. One of "personal_details", "passport", "driver_license", "identity_card", "internal_passport", "address", "utility_bill", "bank_statement", "rental_agreement", "passport_registration", "temporary_registration", "phone_number", "email". data String -Optional. Base64-encoded encrypted Telegram Passport element data provided by the user, available for “personal_details”, “passport”, “driver_license”, “identity_card”, “internal_passport” and “address” types. Can be decrypted and verified using the accompanying EncryptedCredentials. +Optional. Base64-encoded encrypted Telegram Passport element data provided by the user, available for "personal_details", "passport", "driver_license", "identity_card", "internal_passport" and "address" types. Can be decrypted and verified using the accompanying EncryptedCredentials. phone_number String -Optional. User's verified phone number, available only for “phone_number” type +Optional. User's verified phone number, available only for "phone_number" type String -Optional. User's verified email address, available only for “email” type +Optional. User's verified email address, available only for "email" type files Array of PassportFile -Optional. Array of encrypted files with documents provided by the user, available for “utility_bill”, “bank_statement”, “rental_agreement”, “passport_registration” and “temporary_registration” types. Files can be decrypted and verified using the accompanying EncryptedCredentials. +Optional. Array of encrypted files with documents provided by the user, available for "utility_bill", "bank_statement", "rental_agreement", "passport_registration" and "temporary_registration" types. Files can be decrypted and verified using the accompanying EncryptedCredentials. front_side PassportFile -Optional. Encrypted file with the front side of the document, provided by the user. Available for “passport”, “driver_license”, “identity_card” and “internal_passport”. The file can be decrypted and verified using the accompanying EncryptedCredentials. +Optional. Encrypted file with the front side of the document, provided by the user. Available for "passport", "driver_license", "identity_card" and "internal_passport". The file can be decrypted and verified using the accompanying EncryptedCredentials. reverse_side PassportFile -Optional. Encrypted file with the reverse side of the document, provided by the user. Available for “driver_license” and “identity_card”. The file can be decrypted and verified using the accompanying EncryptedCredentials. +Optional. Encrypted file with the reverse side of the document, provided by the user. Available for "driver_license" and "identity_card". The file can be decrypted and verified using the accompanying EncryptedCredentials. selfie PassportFile -Optional. Encrypted file with the selfie of the user holding a document, provided by the user; available for “passport”, “driver_license”, “identity_card” and “internal_passport”. The file can be decrypted and verified using the accompanying EncryptedCredentials. +Optional. Encrypted file with the selfie of the user holding a document, provided by the user; available for "passport", "driver_license", "identity_card" and "internal_passport". The file can be decrypted and verified using the accompanying EncryptedCredentials. translation Array of PassportFile -Optional. Array of encrypted files with translated versions of documents provided by the user. Available if requested for “passport”, “driver_license”, “identity_card”, “internal_passport”, “utility_bill”, “bank_statement”, “rental_agreement”, “passport_registration” and “temporary_registration” types. Files can be decrypted and verified using the accompanying EncryptedCredentials. +Optional. Array of encrypted files with translated versions of documents provided by the user. Available if requested for "passport", "driver_license", "identity_card", "internal_passport", "utility_bill", "bank_statement", "rental_agreement", "passport_registration" and "temporary_registration" types. Files can be decrypted and verified using the accompanying EncryptedCredentials. hash @@ -10653,7 +10683,7 @@ pre-formatted fixed-width code block written in the Python programming languageEncryptedCredentials
+EncryptedCredentials
Describes data required for decrypting and authenticating EncryptedPassportElement. See the Telegram Passport Documentation for a complete description of the data decryption and authentication processes.
@@ -10667,7 +10697,7 @@ pre-formatted fixed-width code block written in the Python programming language
-data String -Base64-encoded encrypted JSON-serialized data with unique user's payload, data hashes and secrets required for EncryptedPassportElement decryption and authentication +Base64-encoded encrypted JSON-serialized data with unique user's payload, data hashes and secrets required for EncryptedPassportElement decryption and authentication hash @@ -10677,13 +10707,13 @@ pre-formatted fixed-width code block written in the Python programming languagesecret String -Base64-encoded secret, encrypted with the bot's public RSA key, required for data decryption +Base64-encoded secret, encrypted with the bot's public RSA key, required for data decryption setPassportDataErrors
+setPassportDataErrors
Informs a user that some of the Telegram Passport elements they provided contains errors. The user will not be able to re-submit their Passport to you until the errors are fixed (the contents of the field for which you returned the error must change). Returns True on success.
-Use this if the data submitted by the user doesn't satisfy the standards your service requires for any reason. For example, if a birthday date seems invalid, a submitted document is blurry, a scan shows evidence of tampering, etc. Supply some details in the error message to make sure the user knows how to correct the issues.
+Use this if the data submitted by the user doesn't satisfy the standards your service requires for any reason. For example, if a birthday date seems invalid, a submitted document is blurry, a scan shows evidence of tampering, etc. Supply some details in the error message to make sure the user knows how to correct the issues.
-
@@ -10708,7 +10738,7 @@ pre-formatted fixed-width code block written in the Python programming language PassportElementError
+PassportElementError
This object represents an error in the Telegram Passport element which was submitted that should be resolved by the user. It should be one of:
-
- PassportElementErrorDataField
@@ -10721,8 +10751,8 @@ pre-formatted fixed-width code block written in the Python programming language- PassportElementErrorTranslationFiles
- PassportElementErrorUnspecified
PassportElementErrorDataField
-Represents an issue in one of the data fields that was provided by the user. The error is considered resolved when the field's value changes.
+PassportElementErrorDataField
+Represents an issue in one of the data fields that was provided by the user. The error is considered resolved when the field's value changes.
-
@@ -10740,7 +10770,7 @@ pre-formatted fixed-width code block written in the Python programming language type String -The section of the user's Telegram Passport which has the error, one of “personal_details”, “passport”, “driver_license”, “identity_card”, “internal_passport”, “address” +The section of the user's Telegram Passport which has the error, one of "personal_details", "passport", "driver_license", "identity_card", "internal_passport", "address" field_name @@ -10759,7 +10789,7 @@ pre-formatted fixed-width code block written in the Python programming languagePassportElementErrorFrontSide
+PassportElementErrorFrontSide
Represents an issue with the front side of a document. The error is considered resolved when the file with the front side of the document changes.
@@ -10778,7 +10808,7 @@ pre-formatted fixed-width code block written in the Python programming language
-type String -The section of the user's Telegram Passport which has the issue, one of “passport”, “driver_license”, “identity_card”, “internal_passport” +The section of the user's Telegram Passport which has the issue, one of "passport", "driver_license", "identity_card", "internal_passport" file_hash @@ -10792,7 +10822,7 @@ pre-formatted fixed-width code block written in the Python programming languagePassportElementErrorReverseSide
+PassportElementErrorReverseSide
Represents an issue with the reverse side of a document. The error is considered resolved when the file with reverse side of the document changes.
@@ -10811,7 +10841,7 @@ pre-formatted fixed-width code block written in the Python programming language
-type String -The section of the user's Telegram Passport which has the issue, one of “driver_license”, “identity_card” +The section of the user's Telegram Passport which has the issue, one of "driver_license", "identity_card" file_hash @@ -10825,7 +10855,7 @@ pre-formatted fixed-width code block written in the Python programming languagePassportElementErrorSelfie
+PassportElementErrorSelfie
Represents an issue with the selfie with a document. The error is considered resolved when the file with the selfie changes.
@@ -10844,7 +10874,7 @@ pre-formatted fixed-width code block written in the Python programming language
-type String -The section of the user's Telegram Passport which has the issue, one of “passport”, “driver_license”, “identity_card”, “internal_passport” +The section of the user's Telegram Passport which has the issue, one of "passport", "driver_license", "identity_card", "internal_passport" file_hash @@ -10858,7 +10888,7 @@ pre-formatted fixed-width code block written in the Python programming languagePassportElementErrorFile
+PassportElementErrorFile
Represents an issue with a document scan. The error is considered resolved when the file with the document scan changes.
@@ -10877,7 +10907,7 @@ pre-formatted fixed-width code block written in the Python programming language
-type String -The section of the user's Telegram Passport which has the issue, one of “utility_bill”, “bank_statement”, “rental_agreement”, “passport_registration”, “temporary_registration” +The section of the user's Telegram Passport which has the issue, one of "utility_bill", "bank_statement", "rental_agreement", "passport_registration", "temporary_registration" file_hash @@ -10891,7 +10921,7 @@ pre-formatted fixed-width code block written in the Python programming languagePassportElementErrorFiles
+PassportElementErrorFiles
Represents an issue with a list of scans. The error is considered resolved when the list of files containing the scans changes.
@@ -10910,7 +10940,7 @@ pre-formatted fixed-width code block written in the Python programming language
-type String -The section of the user's Telegram Passport which has the issue, one of “utility_bill”, “bank_statement”, “rental_agreement”, “passport_registration”, “temporary_registration” +The section of the user's Telegram Passport which has the issue, one of "utility_bill", "bank_statement", "rental_agreement", "passport_registration", "temporary_registration" file_hashes @@ -10924,7 +10954,7 @@ pre-formatted fixed-width code block written in the Python programming languagePassportElementErrorTranslationFile
+PassportElementErrorTranslationFile
Represents an issue with one of the files that constitute the translation of a document. The error is considered resolved when the file changes.
@@ -10943,7 +10973,7 @@ pre-formatted fixed-width code block written in the Python programming language
-type String -Type of element of the user's Telegram Passport which has the issue, one of “passport”, “driver_license”, “identity_card”, “internal_passport”, “utility_bill”, “bank_statement”, “rental_agreement”, “passport_registration”, “temporary_registration” +Type of element of the user's Telegram Passport which has the issue, one of "passport", "driver_license", "identity_card", "internal_passport", "utility_bill", "bank_statement", "rental_agreement", "passport_registration", "temporary_registration" file_hash @@ -10957,7 +10987,7 @@ pre-formatted fixed-width code block written in the Python programming languagePassportElementErrorTranslationFiles
+PassportElementErrorTranslationFiles
Represents an issue with the translated version of a document. The error is considered resolved when a file with the document translation change.
@@ -10976,7 +11006,7 @@ pre-formatted fixed-width code block written in the Python programming language
-type String -Type of element of the user's Telegram Passport which has the issue, one of “passport”, “driver_license”, “identity_card”, “internal_passport”, “utility_bill”, “bank_statement”, “rental_agreement”, “passport_registration”, “temporary_registration” +Type of element of the user's Telegram Passport which has the issue, one of "passport", "driver_license", "identity_card", "internal_passport", "utility_bill", "bank_statement", "rental_agreement", "passport_registration", "temporary_registration" file_hashes @@ -10990,7 +11020,7 @@ pre-formatted fixed-width code block written in the Python programming languagePassportElementErrorUnspecified
+PassportElementErrorUnspecified
Represents an issue in an unspecified place. The error is considered resolved when new data is added.
@@ -11009,7 +11039,7 @@ pre-formatted fixed-width code block written in the Python programming language
-type String -Type of element of the user's Telegram Passport which has the issue +Type of element of the user's Telegram Passport which has the issue element_hash @@ -11023,20 +11053,20 @@ pre-formatted fixed-width code block written in the Python programming languageGames
+Games
Your bot can offer users HTML5 games to play solo or to compete against each other in groups and one-on-one chats. Create games via @BotFather using the /newgame command. Please note that this kind of power requires responsibility: you will need to accept the terms for each game that your bots will be offering.
-
- Games are a new type of content on Telegram, represented by the Game and InlineQueryResultGame objects.
-- Once you've created a game via BotFather, you can send games to chats as regular messages using the sendGame method, or use inline mode with InlineQueryResultGame.
-- If you send the game message without any buttons, it will automatically have a 'Play GameName' button. When this button is pressed, your bot gets a CallbackQuery with the game_short_name of the requested game. You provide the correct URL for this particular user and the app opens the game in the in-app browser.
-- You can manually add multiple buttons to your game message. Please note that the first button in the first row must always launch the game, using the field callback_game in InlineKeyboardButton. You can add extra buttons according to taste: e.g., for a description of the rules, or to open the game's official community.
+- Once you've created a game via BotFather, you can send games to chats as regular messages using the sendGame method, or use inline mode with InlineQueryResultGame.
+- If you send the game message without any buttons, it will automatically have a 'Play GameName' button. When this button is pressed, your bot gets a CallbackQuery with the game_short_name of the requested game. You provide the correct URL for this particular user and the app opens the game in the in-app browser.
+- You can manually add multiple buttons to your game message. Please note that the first button in the first row must always launch the game, using the field callback_game in InlineKeyboardButton. You can add extra buttons according to taste: e.g., for a description of the rules, or to open the game's official community.
- To make your game more attractive, you can upload a GIF animation that demostrates the game to the users via BotFather (see Lumberjack for example).
- A game message will also display high scores for the current chat. Use setGameScore to post high scores to the chat with the game, add the edit_message parameter to automatically update the message with the current scoreboard.
- Use getGameHighScores to get data for in-game high score tables.
- You can also add an extra sharing button for users to share their best score to different chats.
- For examples of what can be done using this new stuff, check the @gamebot and @gamee bots.
sendGame
+sendGame
Use this method to send a game. On success, the sent Message is returned.
@@ -11094,11 +11124,11 @@ pre-formatted fixed-width code block written in the Python programming language
-reply_markup InlineKeyboardMarkup Optional -A JSON-serialized object for an inline keyboard. If empty, one 'Play game_title' button will be shown. If not empty, the first button must launch the game. +A JSON-serialized object for an inline keyboard. If empty, one 'Play game_title' button will be shown. If not empty, the first button must launch the game. Game
+Game
This object represents a game. Use BotFather to create and edit games, their short names will act as unique identifiers.
@@ -11141,10 +11171,10 @@ pre-formatted fixed-width code block written in the Python programming language
-CallbackGame
+CallbackGame
A placeholder, currently holds no information. Use BotFather to set up your game.
-setGameScore
-Use this method to set the score of the specified user in a game message. On success, if the message is not an inline message, the Message is returned, otherwise True is returned. Returns an error, if the new score is not greater than the user's current score in the chat and force is False.
+setGameScore
+Use this method to set the score of the specified user in a game message. On success, if the message is not an inline message, the Message is returned, otherwise True is returned. Returns an error, if the new score is not greater than the user's current score in the chat and force is False.
-
@@ -11199,7 +11229,7 @@ pre-formatted fixed-width code block written in the Python programming language getGameHighScores
+getGameHighScores
Use this method to get data for high score tables. Will return the score of the specified user and several of their neighbors in a game. Returns an Array of GameHighScore objects.
This method will currently return scores for the target user, plus two of their closest neighbors on each side. Will also return the top three users if the user and their neighbors are not among them. Please note that this behavior is subject to change.
@@ -11240,7 +11270,7 @@ pre-formatted fixed-width code block written in the Python programming language -GameHighScore
+GameHighScore
This object represents one row of the high scores table for a game.
@@ -11269,8 +11299,8 @@ pre-formatted fixed-width code block written in the Python programming language
-And that's about all we've got for now.
-
If you've got any questions, please check out our Bot FAQ »
And that's about all we've got for now. +If you've got any questions, please check out our Bot FAQ »
diff --git a/data/web/corefork.telegram.org/bots/features.html b/data/web/corefork.telegram.org/bots/features.html index c1ba4d69f3..51d1e6c9b8 100644 --- a/data/web/corefork.telegram.org/bots/features.html +++ b/data/web/corefork.telegram.org/bots/features.html @@ -49,7 +49,7 @@Users can send messages of all types to bots, including text, files, locations, stickers, voice messages and even dice if they're feeling lucky. However, Telegram bots offer many other tools for building flexible interfaces tailored to your specific needs:
+Users can send messages of all types to bots, including text, files, locations, stickers, voice messages and even dice if they're feeling lucky. However, Telegram bots offer many other tools for building flexible interfaces tailored to your specific needs:
/
.For even more flexibility, Web Apps support 100% custom interfaces with JavaScript.
---Note: Telegram bots can support multiple languages that adapt to the users' language settings in the app.
+Note: Telegram bots can support multiple languages that adapt to the users' language settings in the app.
A command is a simple /keyword
that tells the bot what to do. Telegram apps will:
Commands should be as specific as possible – for example /newlocation
or /newrule
is better than a /new
command that then requires an additional parameter from the user like "location“ or ”rule".
Commands should be as specific as possible – for example /newlocation
or /newrule
is better than a /new
command that then requires an additional parameter from the user like "location" or "rule".
-We require all developers to support several Global Commands to make sure Telegram bots offer a consistent and user-friendly experience.
Your bot is able to show different commands to different users and groups – you can control this using scopes. For example, your bot could show additional commands to group admins or translate the list based on the user’s language_code.
+Your bot is able to show different commands to different users and groups – you can control this using scopes. For example, your bot could show additional commands to group admins or translate the list based on the user’s language_code.
+Keep in mind that Bot API updates will not contain any information about the scope of a command sent by the user – in fact, they may contain commands that don’t exist at all in your bot. Your backend should always verify that received commands are valid and that the user was authorized to use them regardless of scope.
+
-Bots with privacy mode enabled will only receive commands in groups under special conditions, see here.
Bots are able to interpret free text input from users, but offering specific suggestions is often more intuitive – this is where custom keyboards can be extremely useful.
Whenever your bot sends a message, it can display a special keyboard with predefined reply options (see ReplyKeyboardMarkup). Telegram apps that receive the message will display your keyboard to the user. Using any of the buttons will immediately send the respective text. This way you can drastically simplify and streamline user interaction with your bot.
--Check out the one_time_keyboard parameter to automatically hide your bot's keyboard as soon as it's been used.
+Check out the one_time_keyboard parameter to automatically hide your bot's keyboard as soon as it's been used.
You can also customize the text placeholder in the input field by setting the input_field_placeholder
parameter.
There are times when you'd prefer to do things without sending any messages to the chat – like when a user is changing settings, toggling options or navigating search results. In such cases, you can use Inline Keyboards that are shown directly below their relevant messages.
-Unlike with custom reply keyboards, pressing buttons on inline keyboards doesn't send messages to the chat. Instead, inline keyboards support buttons that can work behind the scenes or open different interfaces: callback buttons, URL buttons, switch-to-inline buttons, game buttons and payment buttons.
+There are times when you'd prefer to do things without sending any messages to the chat – like when a user is changing settings, toggling options or navigating search results. In such cases, you can use Inline Keyboards that are shown directly below their relevant messages.
+Unlike with custom reply keyboards, pressing buttons on inline keyboards doesn't send messages to the chat. Instead, inline keyboards support buttons that can work behind the scenes or open different interfaces: callback buttons, URL buttons, switch-to-inline buttons, game buttons and payment buttons.
--To provide a better user experience, consider editing your keyboard when the user toggles a setting button or navigates to a new page – this is both faster and smoother than sending a whole new message and deleting the previous one.
In all bot chats, a menu button appears near the message field. By default, tapping this button opens a menu that can hold some or all of a bot's commands, including a short description for each. Users can then select a command from the menu without needing to type it out.
+In all bot chats, a menu button appears near the message field. By default, tapping this button opens a menu that can hold some or all of a bot's commands, including a short description for each. Users can then select a command from the menu without needing to type it out.
You can set different texts of the menu button and its command descriptions for various individual users or groups of users – for example, showing translated text based on the user’s language, as explained here.
The menu button can alternatively be used to launch a Web App.
-To make basic interactions more uniform, we ask all developers to support a few basic commands. Telegram apps will have interface shortcuts for these commands.
Users will see a Start button the first time they open a chat with your bot. Help and Settings links will be available in the menu on the bot's profile page if you add them in @BotFather.
-Users will see a Start button the first time they open a chat with your bot. Help and Settings links will be available in the menu on the bot's profile page if you add them in @BotFather.
+Bots can present the user with a friendly and intuitive interface that lists any number of groups, channels or other users according to a custom set of criteria. Tapping on a chat will send its identifier to the bot in a service message and seamlessly close the interface.
A group management bot is the perfect example: an admin could select a chat the bot should manage, and then select a user it should promote – this would happen without ever typing any text.
Here is a quick start guide to use this feature:
@@ -175,75 +171,74 @@ width=44% />request_chat
or request_user
respectively.chat_shared
or user_shared
service message.chat_shared
or user_shared
service message.Keep in mind that the bot may not be able to use the identifier it receives if the corresponding chat or user is not already known or accessible by some other means.
In addition to sending commands and messages to the chat with the bot, there are several ways of interacting with them without opening any specific chat or group.
Users can interact with your bot via inline queries straight from the message field in any chat. All they need to do is start a message with your bot's @username and enter a keyword.
+Users can interact with your bot via inline queries straight from the message field in any chat. All they need to do is start a message with your bot's @username and enter a keyword.
Having received the query, your bot can return some results. As soon as the user selects one, it is sent to the relevant chat. This way, people can request and send content from your bot in any of their chats, groups or channels.
Remember that inline functionality has to be enabled via @BotFather, or your bot will not receive inline Updates.
--Examples of inline bots include @gif, @bing and @wiki. Web App bots can also be used inline – try typing @durgerkingbot in any chat.
Telegram bots have a deep linking mechanism that allows additional parameters to be passed to the bot on startup. It could be a command that launches the bot – or an authentication token to connect the user's Telegram account to their account on another platform.
+Telegram bots have a deep linking mechanism that allows additional parameters to be passed to the bot on startup. It could be a command that launches the bot – or an authentication token to connect the user's Telegram account to their account on another platform.
Each bot has a link that opens a conversation with it in Telegram – https://t.me/<bot_username>
. Parameters can be added directly to this link to let your bot work with additional information on the fly, without any user input.
-A-Z, a-z, 0-9, _ and - are allowed. We recommend using base64url to encode parameters with binary and other types of content. The parameter can be up to 64 characters long.
Private Chats
In private chats, you can use the start
parameter to automatically pass any value to your bot whenever a user presses the link. For example, you could use:
Private Chats
+In private chats, you can use the start
parameter to automatically pass any value to your bot whenever a user presses the link. For example, you could use:
https://t.me/your_bot?start=airplane
When someone opens a chat with your bot via this link, you will receive:
/start airplane
-Groups
In groups, you can add the parameter startgroup
to this link. For example:
Groups
+In groups, you can add the parameter startgroup
to this link. For example:
https://t.me/your_bot?startgroup=spaceship
Following a link with this parameter prompts the user to select a group to add the bot to – the resulting update will contain text in the form:
/start@your_bot spaceship
-Web Apps also support deep linking, for more information check out our dedicated guide.
Certain bots can be added directly to a user’s attachment menu – giving them easy access to the bot in any chat. Currently, this option is restricted to certain approved bots, but may be expanded later.
Try adding @DurgerKingBot to your attachment menu.
There are various ways of futher integrating bots with Telegram and other services.
Bots can easily process complex inputs of any kind and dynamic interaction flows via Web Apps. With this unique feature, you can develop any number of flexible, streamlined interfaces in JavaScript.
Web Apps are covered in detail in our dedicated guide – you should read it carefully to learn the wide variety of features they can offer.
@@ -251,15 +246,14 @@ width=44% />+- -If you develop a Web App, be sure to follow our design guidelines – you'll want your custom interface to seamlessly integrate into the app to provide users the best possible experience.
-Payments
-Telegram bots can accept payments with a sleek, streamlined interface that collects all necessary data from the user. Telegram doesn't collect any payment data – like the user's credit card information – and sends it directly to one of the supported payment providers.
+If you develop a Web App, be sure to follow our design guidelines – you'll want your custom interface to seamlessly integrate into the app to provide users the best possible experience.
+Payments
+Telegram bots can accept payments with a sleek, streamlined interface that collects all necessary data from the user. Telegram doesn't collect any payment data – like the user's credit card information – and sends it directly to one of the supported payment providers.
Here is a quick start guide to implement payments:
-
@@ -272,38 +266,37 @@ width=44% />- Pick a provider and obtain the proper token as well as a test token from the "Stripe TEST MODE" provider.
+- Pick a provider and obtain the proper token as well as a test token from the "Stripe TEST MODE" provider.
- Implement payments via the appropriate API methods.
- Test your implementation by using your test token along with a test credit card.
A full and exhaustive guide, including live checklist, parameters and in-depth method descriptions is available here. We strongly recommend that you read the full guide before going live.
---Telegram does not directly process the payments, does not store data about orders and does not collect any fees. Invoices are forwarded directly to the payment provider.
+
For this reason, disputes must be solved between the user, the bot developer and the payment provider. You can read more about this in the Privacy Policy.Telegram does not directly process the payments, does not store data about orders and does not collect any fees. Invoices are forwarded directly to the payment provider. +For this reason, disputes must be solved between the user, the bot developer and the payment provider. You can read more about this in the Privacy Policy.
Web Login
+Web Login
Telegram offers a flexible, lightweight and free framework to authenticate users on any website and app. This can be used to bridge your platform with Telegram, providing a smooth experience to your users. You can also freely rely on this framework to implement a fast and signup-free login on your site, regardless of its connection to Telegram.
-Widgets
+Widgets
The Telegram login widget is a simple and secure way to authorize users on your website.
-
- Choose a bot – ideally its name and profile pic should match the website title and logo.
- Use the
/setdomain
command in @BotFather to pair the bot with your website domain.- Configure your widget using our dedicated tool and embed it on your website.
Inline Login
-When users open your website via an inline button, you can use the login_url parameter as an alternative to login widgets. This way, you'll be able to seamlessly authorize them on your website or app before the page even loads.
+Inline Login
+When users open your website via an inline button, you can use the login_url parameter as an alternative to login widgets. This way, you'll be able to seamlessly authorize them on your website or app before the page even loads.
--Make sure to review our guide on authenticating the received data as well as our sample code.
HTML5 Games
+HTML5 Games
Bots can serve as standalone gaming platforms – with our HTML5 Gaming API you can develop multiplayer or single-player games and let your users have fun comparing ranks, scores and much more.
To get started, follow these simple steps:
- Send the
/newgame
command to @BotFather- Provide a description text, an image or an optional gif to showcase its gameplay
- Send the game to users via the sendGame method or via an inline query
-- When someone wants to play, you'll receive the appropriate
+game_short_name
in a CallbackQuery- When someone wants to play, you'll receive the appropriate
game_short_name
in a CallbackQuery- To launch the game, provide the HTML5 Game URL as the
url
param of answerCallbackQueryThen, to handle highscores:
@@ -317,49 +310,50 @@ width=44% />HTML5 Games Bot API Docs --Check out @GameBot and @gamee for examples of what you can do using our Gaming Platform.
Stickers and Custom Emoji
+Stickers and Custom Emoji
Stickers and Custom Emoji are a distinctive Telegram feature used by millions of users to share artwork every day. Stickers and custom emoji take many forms – ranging from basic images to smooth vector animations and high-detail .WEBM videos.
-All these formats are supported by our Bot API, which allows bots to create, edit, delete and share new artwork packs on the fly. Telegram's Import API lets users migrate packs from other platforms and sticker apps.
-Creating a new pack
+
To create a new pack, simply:All these formats are supported by our Bot API, which allows bots to create, edit, delete and share new artwork packs on the fly. Telegram's Import API lets users migrate packs from other platforms and sticker apps.
+Creating a new pack +To create a new pack, simply:
-
- Prepare your artwork following our technical requirements.
- Create a new sticker pack via createStickerSet. Set
sticker_type
to regular to create a sticker pack or to custom emoji to create a pack of custom emoji. Attach the files you wish to include in the pack as an array of InputSticker- You can use addStickerToSet to add stickers or emoji later on.
Additional features
+
Regular stickers and custom emoji support keywords that users can type to quickly find the respective artwork – this can be useful when a sticker doesn't have obvious ties to a specific emoji. You can use thekeywords
parameter in InputSticker to specify them.Additional features +Regular stickers and custom emoji support keywords that users can type to quickly find the respective artwork – this can be useful when a sticker doesn't have obvious ties to a specific emoji. You can use the
keywords
parameter in InputSticker to specify them.Custom emoji additionally support adaptive colors – they will always match the current context (e.g., white on photos, accent color when used as status, etc.); to enable this feature, use the
-needs_repainting
parameter in createStickerSet.Once you're done creating and sharing your artwork, don't forget to check out our remaining sticker methods to find out how to edit, delete and even reorder your pack.
+Once you're done creating and sharing your artwork, don't forget to check out our remaining sticker methods to find out how to edit, delete and even reorder your pack.
-Note that these methods will only work on packs created by the bot that is calling them.
Language Support
+Language Support
Bots can tailor their interfaces to support multiple languages – updating inputs and information on the fly. A user’s language_code is included in every relevant update as an IETF language tag, allowing bots to adapt accordingly.
We recommend that you follow our guidelines to provide the best user experience.
- Your interfaces, texts and inline results should adapt seamlessly to the language_code, without user intervention.
-- Connected WebApps will receive the user's language_code – your HTML page should account for it.
-- HTML5 Games can obtain language information if you specify it as a URL parameter. You can generate this parameter from the language_code field in the User object served with the initial game CallbackQuery.
-- The bot's Name, Description and About text can be natively localized with the respective methods.
+- Connected WebApps will receive the user's language_code – your HTML page should account for it.
+- HTML5 Games can obtain language information if you specify it as a URL parameter. You can generate this parameter from the language_code field in the User object served with the initial game CallbackQuery.
+- The bot's Name, Description and About text can be natively localized with the respective methods.
- Command lists can also be specified for individual languages – more on this here.
+--The language_code is an optional field – it could be empty.
+
If you target the general public, your code should always fall back to either the last recorded language tag or English (in this order) when the field is missing for a specific user.The language_code is an optional field – it could be empty. +If you target the general public, your code should always fall back to either the last recorded language tag or English (in this order) when the field is missing for a specific user.
-Bot Management
-Privacy Mode
+Bot Management
+Privacy Mode
Bots are frequently added to groups to perform basic tasks or assist moderators – like automatically posting company announcements or even celebrating birthdays. By default, all bots added to groups run in Privacy Mode and only see relevant messages and commands:
-
- Commands explicitly meant for them (e.g.,
@@ -373,21 +367,20 @@ width=44% />/command@this_bot
).- All messages from private chats.
- All messages from channels where they are a member.
Privacy mode is enabled by default for all bots, except bots that were added to a group as admins (bot admins always receive all messages). It can be disabled so that the bot receives all messages like an ordinary user (the bot will need to be re-added to the group for this change to take effect). We only recommend doing this in cases where it is absolutely necessary for your bot to work. In most cases, using the force reply option for the bot's messages should be more than enough.
+Privacy mode is enabled by default for all bots, except bots that were added to a group as admins (bot admins always receive all messages). It can be disabled so that the bot receives all messages like an ordinary user (the bot will need to be re-added to the group for this change to take effect). We only recommend doing this in cases where it is absolutely necessary for your bot to work. In most cases, using the force reply option for the bot's messages should be more than enough.
--This mode not only increases user privacy, but also makes the bot more efficient by reducing the number of inputs it needs to process. Users can always see a bot’s current privacy setting in the list of group members.
Testing your bot
+Testing your bot
You can quickly test your bot without interfering with its users by simply running another instance of your code on a different bot account. To do so, create a new bot via @BotFather, obtain its token and use it in the testing instance of your code.
All further testing and debugging can happen privately on the new bot, without affecting the original instance.
-If you need to share file references across bots, note that the
file_id
field is tied to a single bot id, so your test instance cannot use a sharedfile_id
database to quickly send media – files must be individually reuploaded.Dedicated test environment
+Dedicated test environment
Telegram also offers a dedicated test environment suitable for more advanced testing. Bots and users in this environment generally have more flexible restrictions – for example:
- When working with the test environment, you may use HTTP links without TLS to test your Web Apps or Web Login.
@@ -396,55 +389,62 @@ width=44% />-Flood limits are not raised in the test environment, and may at times be stricter. To minimize how this impacts your bot, you should make sure that it handles errors with retry policies and does not depend on hardcoded limit values.
Creating a bot in the test environment
+Creating a bot in the test environment
The test environment is completely separate from the main environment, so you will need to create a new user account and a new bot with @BotFather.
To create an account and log in, use either of the following:
- iOS: tap 10 times on the Settings icon > Accounts > Login to another account > Test.
-- Telegram Desktop: open ☰ Settings > Shift + Alt + Right click 'Add Account' and select 'Test Server'.
-- macOS: click the Settings icon 10 times to open the Debug Menu, ⌘ + click 'Add Account' and log in via phone number.
+- Telegram Desktop: open ☰ Settings > Shift + Alt + Right click 'Add Account' and select 'Test Server'.
+- macOS: click the Settings icon 10 times to open the Debug Menu, ⌘ + click 'Add Account' and log in via phone number.
After logging in, simply create a new bot following the standard procedure and send your requests to the Test Bot API in this format:
https://api.telegram.org/bot<token>/test/METHOD_NAME
-When working with the test environment, you may use HTTP links without TLS in the
url
field of both LoginUrl and WebAppInfo.Status alerts
+Status alerts
Millions choose Telegram for its speed. To best benefit users, your bot also needs to be responsive. In order to help developers keep their bots in shape, @BotFather will send status alerts if it sees something is wrong.
We check the number of replies and the request/response conversion rate for popular bots (~300 requests per minute, this value may change in the future). If your bot returns an abnormally low number, you will receive a notification from @BotFather.
-Responding to alerts
+Responding to alerts
By default, you will only get one alert per bot per hour.
Each alert has the following buttons:
-
- Fixed - Use this if you found an issue with your bot and fixed it. If you press the fix button, we will resume sending alerts in the regular way so that you can see if your fix worked within 5-10 minutes instead of having to wait for an hour.
-- Support - Use this to open a chat with @BotSupport if you don't see any issues with your bot or if you think the problem is on our side.
-- Mute for 8h/1w - Use this if you can't fix your bot at the moment. This will disable all alerts for the bot in question for the specified period of time. We do not recommend using this option since your users may migrate to a more stable bot. You can unmute alerts in your bot's settings via @BotFather.
+- Support - Use this to open a chat with @BotSupport if you don't see any issues with your bot or if you think the problem is on our side.
+- Mute for 8h/1w - Use this if you can't fix your bot at the moment. This will disable all alerts for the bot in question for the specified period of time. We do not recommend using this option since your users may migrate to a more stable bot. You can unmute alerts in your bot's settings via @BotFather.
Monitored issues
+Monitored issues
We currently notify you about the following issues:
-
Too few private messages are sent. Value: {value} - Your bot is sending far fewer messages than it did in previous weeks. This is useful for newsletter-style bots that send messages without prompts from users. The larger the value, the more significant the difference.
+- +
-Too few private messages are sent. Value: {value} - Your bot is sending far fewer messages than it did in previous weeks. This is useful for newsletter-style bots that send messages without prompts from users. The larger the value, the more significant the difference.
Too few replies to incoming private messages. Conversion rate: {value} - Your bot is not replying to all messages that are being sent to it (the request/response conversion rate for your bot was too low for at least two of the last three 5-minute periods).
+- +
Too few replies to incoming private messages. Conversion rate: {value} - Your bot is not replying to all messages that are being sent to it (the request/response conversion rate for your bot was too low for at least two of the last three 5-minute periods).
To provide a good user experience, please respond to all messages that are sent to your bot. Respond to message updates by calling send… methods (e.g. sendMessage).
-
-- Too few answers to inline queries. Conversion rate: {value} - Your bot is not replying to all inline queries that are being sent to it, calculated in the same way as above. Respond to
+inline_query
updates by calling answerInlineQuery.- +
+Too few answers to inline queries. Conversion rate: {value} - Your bot is not replying to all inline queries that are being sent to it, calculated in the same way as above. Respond to
+inline_query
updates by calling answerInlineQuery.- +
+Too few answers to callback queries. Conversion rate: {value}
+- +
Too few answers to callback game queries. Conversion rate: {value} - Your bot is not replying to all callback queries that are being sent to it (with or without games), calculated in the same way as above. Respond to
+callback_query
updates by calling answerCallbackQuery.-
-- Too few answers to callback queries. Conversion rate: {value}
-- Too few answers to callback game queries. Conversion rate: {value} - Your bot is not replying to all callback queries that are being sent to it (with or without games), calculated in the same way as above. Respond to
-callback_query
updates by calling answerCallbackQuery.Local Bot API
-You can host and work with your own instance of our open-source Bot API.
+
The source code is available here, along with a quick installation guide.Local Bot API
+You can host and work with your own instance of our open-source Bot API. +The source code is available here, along with a quick installation guide.
After installing the server, remember to use the logOut method before redirecting requests to your new local API URL.
-Your local instance runs on port
8081
by default and will only accept HTTP requests, so a TLS termination proxy has to be used to handle remote HTTPS requests.By hosting our API locally you'll gain access to some upgrades, including:
+By hosting our API locally you'll gain access to some upgrades, including:
@@ -476,31 +476,36 @@ width=44% /> -You can find an exhaustive list here.
+
All limits may be subject to change in the future, so make sure to follow @BotNews.You can find an exhaustive list here. +All limits may be subject to change in the future, so make sure to follow @BotNews.
-BotFather
+BotFather
Below is a detailed guide to using @BotFather, Telegram’s tool for creating and managing bots.
-Creating a new bot
+Creating a new bot
Use the
/newbot
command to create a new bot. @BotFather will ask you for a name and username, then generate an authentication token for your new bot.-
The name of your bot is displayed in contact details and elsewhere.
+- +
-The name of your bot is displayed in contact details and elsewhere.
The username is a short name, used in search, mentions and t.me links. Usernames are 5-32 characters long and not case sensitive – but may only include Latin characters, numbers, and underscores. Your bot's username must end in 'bot’, like 'tetris_bot' or 'TetrisBot'.
+- +
-The username is a short name, used in search, mentions and t.me links. Usernames are 5-32 characters long and not case sensitive – but may only include Latin characters, numbers, and underscores. Your bot's username must end in 'bot’, like 'tetris_bot' or 'TetrisBot'.
The token is a string, like
+110201543:AAHdqTcvCH1vGWJxfSeofSAs0K5PALDsaw
, which is required to authorize the bot and send requests to the Bot API. Keep your token secure and store it safely, it can be used by anyone to control your bot.- +
The token is a string, like
110201543:AAHdqTcvCH1vGWJxfSeofSAs0K5PALDsaw
, which is required to authorize the bot and send requests to the Bot API. Keep your token secure and store it safely, it can be used by anyone to control your bot.--Unlike the bot’s name, the username cannot be changed later – so choose it carefully.
+
When sending a request to api.telegram.org, remember to prefix the word ‘bot’ to your token.Unlike the bot’s name, the username cannot be changed later – so choose it carefully. +When sending a request to api.telegram.org, remember to prefix the word ‘bot’ to your token.
About text, description and profile media
-When new users open your bot, they will be met with a helpful description in a box titled “What can this bot do?”.
+About text, description and profile media
+When new users open your bot, they will be met with a helpful description in a box titled "What can this bot do?".
Properly setting this field in @BotFather allows everyone to immediately get an idea of what your bot can do – your description should be brief, to the point and on topic.
-You can also add a photo or video to this field with
Edit Description Picture
in @BotFather.Additionally, just like normal users, bots also come with a short bio available on their profile. If you didn't specify this field while first creating your bot, you can set it at any time with the
+/setabouttext
command in @BotFather. Users can interact with many bots and they won't have access to their description after starting them – having a quick reminder of the bot's purpose can be very useful.Additionally, just like normal users, bots also come with a short bio available on their profile. If you didn't specify this field while first creating your bot, you can set it at any time with the
/setabouttext
command in @BotFather. Users can interact with many bots and they won't have access to their description after starting them – having a quick reminder of the bot's purpose can be very useful.@@ -508,36 +513,38 @@ width=44% />Note that both the Description and the About text can be natively localized – each user will automatically see the correct translation for their language.
-Starting from April 21, 2023 (Telegram 9.6), you can edit your bot directly from its profile page – including setting a custom profile video.
Generating an authentication token
+Generating an authentication token
If your existing token is compromised or you lost it for some reason, use the
-/token
command to generate a new one.Transfer ownership
-You can transfer ownership of your bot to another user.
+
To do this, send/mybots
, select your bot, then transfer ownership.
You can only transfer a bot to users who have interacted with it at least once.Transfer ownership
+You can transfer ownership of your bot to another user. +To do this, send
/mybots
, select your bot, then transfer ownership. +You can only transfer a bot to users who have interacted with it at least once.-Transferring ownership will give full control of the bot to another user – they will be able to access the bot’s messages and even delete it. The transfer is permanent, so please consider it carefully.
BotFather commands
+BotFather commands
The remaining commands are pretty self-explanatory:
-
- /mybots – returns a list of your bots with handy controls to edit their settings.
- /mygames – does the same for your games.
Edit bots
+Edit bots
To edit your bot, you have two options.
You can use the available commands:
-
- /setname – change your bot's name.
-- /setdescription – change the bot's description (short text up to 512 characters). Users will see this text at the beginning of the conversation with the bot, titled 'What can this bot do?'.
-- /setabouttext – change the bot's about info, a shorter text up to 120 characters. Users will see this text on the bot's profile page. When they share your bot with someone, this text is sent together with the link.
-- /setuserpic – change the bot's profile picture.
+- /setname – change your bot's name.
+- /setdescription – change the bot's description (short text up to 512 characters). Users will see this text at the beginning of the conversation with the bot, titled 'What can this bot do?'.
+- /setabouttext – change the bot's about info, a shorter text up to 120 characters. Users will see this text on the bot's profile page. When they share your bot with someone, this text is sent together with the link.
+- /setuserpic – change the bot's profile picture.
- /setcommands – change the list of commands supported by your bot. Users will see these commands as suggestions when they type
/
in the chat with your bot. See commands for more info.- /setdomain – link a website domain to your bot. See the login widget section.
- /deletebot – delete your bot and free its username. Cannot be undone.
Or you can use the
/mybots
command, tap on your bot and use the modern inline interface to edit it.--Starting from April 21, 2023 (Telegram 9.6), you can edit your bot's public-facing info directly from its profile page – including setting a custom profile video.
+Starting from April 21, 2023 (Telegram 9.6), you can edit your bot's public-facing info directly from its profile page – including setting a custom profile video.
Edit settings
+Edit settings
-
- /setinline – toggle inline mode for your bot.
- /setinlinegeo – request location data to provide location-based inline results.
@@ -545,7 +552,7 @@ width=44% />- /setinlinefeedback – toggle whether the API should send updates about the results chosen by users. See an in-depth explanation here.
- /setprivacy – set which messages your bot will receive when added to a group. See privacy-mode for more info.
Manage games
+Manage games
diff --git a/data/web/corefork.telegram.org/mtproto/samples-auth_key.html b/data/web/corefork.telegram.org/mtproto/samples-auth_key.html index bc8c139180..932a833e21 100644 --- a/data/web/corefork.telegram.org/mtproto/samples-auth_key.html +++ b/data/web/corefork.telegram.org/mtproto/samples-auth_key.html @@ -44,7 +44,6 @@
- /newgame – create a new game.
- /listgames – see a list of your games.
@@ -559,9 +566,8 @@ width=44% />With this information, you are ready to proceed to our Full API Reference for Developers.
- +
- If you have any questions, check out our Bot FAQ.
-- If you're experiencing issues with our API, please contact @BotSupport on Telegram.
-- If you're experiencing issues with our API, please contact @BotSupport on Telegram.
+-
In the examples below, the transport headers are omitted:
For example, for the abridged version of the transport », the client sends
@@ -54,9 +53,9 @@0xef
as the first byte (important: only prior to the very first data packet), then the packet length is encoded with a single byte (0x01-0x7e
= data length divided by 4; or0x7f
followed by 3 bytes (little endian) divided by 4) followed by the data itself. In this case, server responses have the same structure (although the server does not send0xef
as the first byte).1) Client sends query to server
Sent payload (excluding transport headers/trailers):
-+0000 | 00 00 00 00 00 00 00 00 84 8C 00 00 B1 AF 9C 64 -0010 | 14 00 00 00 F1 8E 7E BE B0 BB 83 C2 68 49 38 B7 -0020 | 6A C4 92 3A A5 45 C8 F0
0000 | 00 00 00 00 00 00 00 00 CC EF 06 00 59 96 9E 64 +0010 | 14 00 00 00 F1 8E 7E BE 3B 6C E1 1B ED C3 46 61 +0020 | B0 E7 0F 88 33 91 0C 6F
Payload (de)serialization:
req_pq_multi#be7e8ef1 nonce:int128 = ResPQ;
@@ -78,8 +77,8 @@
message_id 8, 8 -- 848C0000B1AF9C64
Message ID generated as specified here » ++ CCEF060059969E64
Message ID generated as specified here » (unixtime() << 32) + (N*4) message_length @@ -96,7 +95,7 @@@@ -105,11 +104,11 @@ nonce 24, 16 -+ B0BB83C2684938B76AC4923AA545C8F0
3B6CE11BEDC34661B0E70F8833910C6F
Random number 2) Server sends response of the form
Received payload (excluding transport headers/trailers):
-0000 | 00 00 00 00 00 00 00 00 01 9C 04 77 B1 AF 9C 64 -0010 | 50 00 00 00 63 24 16 05 B0 BB 83 C2 68 49 38 B7 -0020 | 6A C4 92 3A A5 45 C8 F0 59 2E 37 C5 BF 99 B8 DD -0030 | AE 33 E6 EE 39 4B 47 42 08 2E 07 1E 8F 6E F5 45 -0040 | 63 00 00 00 15 C4 B5 1C 03 00 00 00 A5 B7 F7 09 +
0000 | 00 00 00 00 00 00 00 00 01 EC 6A 62 59 96 9E 64 +0010 | 50 00 00 00 63 24 16 05 3B 6C E1 1B ED C3 46 61 +0020 | B0 E7 0F 88 33 91 0C 6F 78 D0 02 2E 8C 91 C6 34 +0030 | 91 06 77 B5 9A 8B DD 7C 08 15 D2 EA 60 D9 E9 F0 +0040 | 61 00 00 00 15 C4 B5 1C 03 00 00 00 A5 B7 F7 09 0050 | 35 5F C3 0B 21 6B E8 6C 02 2B B4 C3 85 FD 64 DE 0060 | 85 1D 9D D0
Payload (de)serialization:
@@ -133,8 +132,8 @@message_id 8, 8 -- 019C0477B1AF9C64
Message ID generated as specified here » ++ 01EC6A6259969E64
Message ID generated as specified here » (unixtime() << 32) + (N*4) message_length @@ -151,19 +150,19 @@nonce 24, 16 -+ B0BB83C2684938B76AC4923AA545C8F0
3B6CE11BEDC34661B0E70F8833910C6F
Value generated by client in Step 1 server_nonce 40, 16 -+ 592E37C5BF99B8DDAE33E6EE394B4742
78D0022E8C91C634910677B59A8BDD7C
Server-generated random number pq 56, 12 -+ 082E071E8F6EF54563000000
TL byte deserialization
=> bigendian conversion to decimal
=> 33166532519723840990815D2EA60D9E9F061000000
TL byte deserialization
=> bigendian conversion to decimal
=> 1572576921599471713Single-byte prefix denoting length, an 8-byte string, and three bytes of padding @@ -209,22 +208,22 @@ Proof of work
3) Client decomposes pq into prime factors such that p < q.
--pq = 3316653251972384099
Decompose into 2 prime cofactors:
-3316653251972384099 = 1704206131 * 1946157329
+p = 1704206131 -q = 1946157329
+pq = 1572576921599471713
Decompose into 2 prime cofactors:
+1572576921599471713 = 1182921973 * 1329400381
p = 1182921973 +q = 1329400381
Presenting proof of work; Server authentication
4)
encrypted_data
payload generationFirst of all, generate an
encrypted_data
payload as follows:Generated payload (excluding transport headers/trailers):
-0000 | 95 5F F5 A9 08 2E 07 1E 8F 6E F5 45 63 00 00 00 -0010 | 04 65 94 1F 33 00 00 00 04 74 00 01 11 00 00 00 -0020 | B0 BB 83 C2 68 49 38 B7 6A C4 92 3A A5 45 C8 F0 -0030 | 59 2E 37 C5 BF 99 B8 DD AE 33 E6 EE 39 4B 47 42 -0040 | FA 05 D4 1E 4C C4 D7 94 58 F8 26 B2 33 4B 26 67 -0050 | 5C C6 64 8E 23 E7 62 6B 75 A1 B9 09 98 1A C9 55 +
0000 | 95 5F F5 A9 08 15 D2 EA 60 D9 E9 F0 61 00 00 00 +0010 | 04 46 81 F4 F5 00 00 00 04 4F 3D 0A 3D 00 00 00 +0020 | 3B 6C E1 1B ED C3 46 61 B0 E7 0F 88 33 91 0C 6F +0030 | 78 D0 02 2E 8C 91 C6 34 91 06 77 B5 9A 8B DD 7C +0040 | ED FD 84 45 50 63 A5 3E AB FB 6D 2E 4B 46 7D 2F +0050 | A7 92 E2 CF 09 22 6E E0 10 74 AD 37 BF A3 61 01 0060 | 02 00 00 00
Payload (de)serialization:
@@ -247,37 +246,37 @@ q = 1946157329p_q_inner_data_dc#a9f55f95 pq:string p:string q:string nonce:int128 server_nonce:int128 new_nonce:int256 dc:int = P_Q_inner_data;
pq 4, 12 -+ 082E071E8F6EF54563000000
TL byte deserialization
=> bigendian conversion to decimal
=> 33166532519723840990815D2EA60D9E9F061000000
TL byte deserialization
=> bigendian conversion to decimal
=> 1572576921599471713Single-byte prefix denoting length, 8-byte string, and three bytes of padding p 16, 8 -+ 0465941F33000000
TL byte deserialization
=> bigendian conversion to decimal
=> 1704206131044681F4F5000000
TL byte deserialization
=> bigendian conversion to decimal
=> 1182921973First prime cofactor: single-byte prefix denoting length, 4-byte string, and three bytes of padding q 24, 8 -+ 0474000111000000
TL byte deserialization
=> bigendian conversion to decimal
=> 1946157329044F3D0A3D000000
TL byte deserialization
=> bigendian conversion to decimal
=> 1329400381Second prime cofactor: single-byte prefix denoting length, 4-byte string, and three bytes of padding nonce 32, 16 -+ B0BB83C2684938B76AC4923AA545C8F0
3B6CE11BEDC34661B0E70F8833910C6F
Value generated by client in Step 1 server_nonce 48, 16 -+ 592E37C5BF99B8DDAE33E6EE394B4742
78D0022E8C91C634910677B59A8BDD7C
Value received from server in Step 2 new_nonce 64, 32 -+ FA05D41E4CC4D79458F826B2334B2667
5CC6648E23E7626B75A1B909981AC955
EDFD84455063A53EABFB6D2E4B467D2F
A792E2CF09226EE01074AD37BFA36101
Client-generated random number @@ -292,39 +291,39 @@ q = 1946157329 The serialization of P_Q_inner_data produces data, which is used to generate encrypted_data as specified in step 4.1.
-
These are the inputs to the algorithm specified in step 4.1:+data = 955FF5A9082E071E8F6EF545630000000465941F330000000474000111000000B0BB83C2684938B76AC4923AA545C8F0592E37C5BF99B8DDAE33E6EE394B4742FA05D41E4CC4D79458F826B2334B26675CC6648E23E7626B75A1B909981AC95502000000 -random_padding_bytes = 2F9E22AC78033569C4B3F7035D5FFAFC3EBF28ECD70A65926B2E64D9118B8AB14EB6A100AA469AACCB3B9961D5E588C19A4E0C17F8C5CEDC003442FD0AECC129BFD6EEA4AD293FF753A0B194AB005F24E74FA78A98E10EAA2F16AD98
data = 955FF5A90815D2EA60D9E9F061000000044681F4F5000000044F3D0A3D0000003B6CE11BEDC34661B0E70F8833910C6F78D0022E8C91C634910677B59A8BDD7CEDFD84455063A53EABFB6D2E4B467D2FA792E2CF09226EE01074AD37BFA3610102000000 +random_padding_bytes = D7BE719CB22BA6AF3DE51EADA87C69C52899A766A1060020D8F78E99F5BA4CE541FA6A770C64721DF54FF65A28D6BBD17EB31520D2E38A2414166F0DDC9504CF67B374297516EA704BC3CDA83CD239D777869EA299EC82F9BDC51E15
And this is the output:
-+encrypted_data = DF92287F32BBAE22049A7DF88007F9FBE0103D8DF533E4ED59C0A25B6D99FA0A9F2C83A8E45C28B2C7AB6D541B38C6254FDE09B773B38ECDB94B660D71415CDFD4B8BAD8B91DC60B837BF4205A781AB77885D8E0EF71E329D4B9356302C4D2BE16E34A6A939559BE65EC2F0EFE2CD561E9B058A13B5C8EEEB6907DF897AA7E48BE7F7DE1D13058476C8EDF60A79330D0A9178E3FA064EF069063BC37AAA3CC1B5E0E347290E5C1197A10C01986035E20C0B106074C857906131ACE5F75900037E16F66FC0D0D62383412CE7D7A9DCC45AFC3025AD9976268664F4162581175139A2F0910C69CDFBE9DA93CAC8C3CA67A4278E2CD2A67EF9D9FF5D7F866E24596
encrypted_data = A527714D9BE67624A4B3B7805E93D3D845ECD997A689C7022449909D7444BEF564B361443A949201616ACA30E9FF622C4597A330CDFAF2FFC3185BD9DF83E0D36F35C9921F0653202F696F7AB61BFBF3FA44F8B7D228ED08CDA276B7070F5C0FC6DD87FC8F27D61D63A358ED557CEA2977F2F8474458091F94AA54B46F97BBCB0409F4A999ECC9DC86EE294C608A9558C222B5D7FF4E339306583571F8DD08B6A6FF9D475F93FCB6E7FCF61E8EE1CB394378EBD7DCC86526852BA2FAFD219984FC1BEA7D10EB655AE34E62B0F38301D96160557777DCAD40C1FC311F009D998BB147226A0316A83F4810D6C164755D5AD02F0144BE205F31E5AC778FF3BBAAD7
The length of the final string is 256 bytes.
5) Send req_DH_params query with generated
encrypted_data
Sent payload (excluding transport headers/trailers):
-+0000 | 00 00 00 00 00 00 00 00 74 07 01 00 B1 AF 9C 64 -0010 | 40 01 00 00 BE E4 12 D7 B0 BB 83 C2 68 49 38 B7 -0020 | 6A C4 92 3A A5 45 C8 F0 59 2E 37 C5 BF 99 B8 DD -0030 | AE 33 E6 EE 39 4B 47 42 04 65 94 1F 33 00 00 00 -0040 | 04 74 00 01 11 00 00 00 85 FD 64 DE 85 1D 9D D0 -0050 | FE 00 01 00 DF 92 28 7F 32 BB AE 22 04 9A 7D F8 -0060 | 80 07 F9 FB E0 10 3D 8D F5 33 E4 ED 59 C0 A2 5B -0070 | 6D 99 FA 0A 9F 2C 83 A8 E4 5C 28 B2 C7 AB 6D 54 -0080 | 1B 38 C6 25 4F DE 09 B7 73 B3 8E CD B9 4B 66 0D -0090 | 71 41 5C DF D4 B8 BA D8 B9 1D C6 0B 83 7B F4 20 -00A0 | 5A 78 1A B7 78 85 D8 E0 EF 71 E3 29 D4 B9 35 63 -00B0 | 02 C4 D2 BE 16 E3 4A 6A 93 95 59 BE 65 EC 2F 0E -00C0 | FE 2C D5 61 E9 B0 58 A1 3B 5C 8E EE B6 90 7D F8 -00D0 | 97 AA 7E 48 BE 7F 7D E1 D1 30 58 47 6C 8E DF 60 -00E0 | A7 93 30 D0 A9 17 8E 3F A0 64 EF 06 90 63 BC 37 -00F0 | AA A3 CC 1B 5E 0E 34 72 90 E5 C1 19 7A 10 C0 19 -0100 | 86 03 5E 20 C0 B1 06 07 4C 85 79 06 13 1A CE 5F -0110 | 75 90 00 37 E1 6F 66 FC 0D 0D 62 38 34 12 CE 7D -0120 | 7A 9D CC 45 AF C3 02 5A D9 97 62 68 66 4F 41 62 -0130 | 58 11 75 13 9A 2F 09 10 C6 9C DF BE 9D A9 3C AC -0140 | 8C 3C A6 7A 42 78 E2 CD 2A 67 EF 9D 9F F5 D7 F8 -0150 | 66 E2 45 96
0000 | 00 00 00 00 00 00 00 00 E4 1A 07 00 59 96 9E 64 +0010 | 40 01 00 00 BE E4 12 D7 3B 6C E1 1B ED C3 46 61 +0020 | B0 E7 0F 88 33 91 0C 6F 78 D0 02 2E 8C 91 C6 34 +0030 | 91 06 77 B5 9A 8B DD 7C 04 46 81 F4 F5 00 00 00 +0040 | 04 4F 3D 0A 3D 00 00 00 85 FD 64 DE 85 1D 9D D0 +0050 | FE 00 01 00 A5 27 71 4D 9B E6 76 24 A4 B3 B7 80 +0060 | 5E 93 D3 D8 45 EC D9 97 A6 89 C7 02 24 49 90 9D +0070 | 74 44 BE F5 64 B3 61 44 3A 94 92 01 61 6A CA 30 +0080 | E9 FF 62 2C 45 97 A3 30 CD FA F2 FF C3 18 5B D9 +0090 | DF 83 E0 D3 6F 35 C9 92 1F 06 53 20 2F 69 6F 7A +00A0 | B6 1B FB F3 FA 44 F8 B7 D2 28 ED 08 CD A2 76 B7 +00B0 | 07 0F 5C 0F C6 DD 87 FC 8F 27 D6 1D 63 A3 58 ED +00C0 | 55 7C EA 29 77 F2 F8 47 44 58 09 1F 94 AA 54 B4 +00D0 | 6F 97 BB CB 04 09 F4 A9 99 EC C9 DC 86 EE 29 4C +00E0 | 60 8A 95 58 C2 22 B5 D7 FF 4E 33 93 06 58 35 71 +00F0 | F8 DD 08 B6 A6 FF 9D 47 5F 93 FC B6 E7 FC F6 1E +0100 | 8E E1 CB 39 43 78 EB D7 DC C8 65 26 85 2B A2 FA +0110 | FD 21 99 84 FC 1B EA 7D 10 EB 65 5A E3 4E 62 B0 +0120 | F3 83 01 D9 61 60 55 77 77 DC AD 40 C1 FC 31 1F +0130 | 00 9D 99 8B B1 47 22 6A 03 16 A8 3F 48 10 D6 C1 +0140 | 64 75 5D 5A D0 2F 01 44 BE 20 5F 31 E5 AC 77 8F +0150 | F3 BB AA D7
Payload (de)serialization:
req_DH_params#d712e4be nonce:int128 server_nonce:int128 p:string q:string public_key_fingerprint:long encrypted_data:string = Server_DH_Params;
@@ -346,8 +345,8 @@ random_padding_bytes = 2F9E22AC78033569C4B3F7035D5FFAFC3EBF28ECD70A65926B2E64D91
message_id 8, 8 -- 74070100B1AF9C64
Message ID generated as specified here » ++ E41A070059969E64
Message ID generated as specified here » (unixtime() << 32) + (N*4) message_length @@ -364,25 +363,25 @@ random_padding_bytes = 2F9E22AC78033569C4B3F7035D5FFAFC3EBF28ECD70A65926B2E64D91nonce 24, 16 -+ B0BB83C2684938B76AC4923AA545C8F0
3B6CE11BEDC34661B0E70F8833910C6F
Value generated by client in Step 1 server_nonce 40, 16 -+ 592E37C5BF99B8DDAE33E6EE394B4742
78D0022E8C91C634910677B59A8BDD7C
Value received from server in Step 2 p 56, 8 -+ 0465941F33000000
TL byte deserialization
=> bigendian conversion to decimal
=> 1704206131044681F4F5000000
TL byte deserialization
=> bigendian conversion to decimal
=> 1182921973First prime cofactor: single-byte prefix denoting length, 4-byte string, and three bytes of padding q 64, 8 -+ 0474000111000000
TL byte deserialization
=> bigendian conversion to decimal
=> 1946157329044F3D0A3D000000
TL byte deserialization
=> bigendian conversion to decimal
=> 1329400381Second prime cofactor: single-byte prefix denoting length, 4-byte string, and three bytes of padding @@ -394,7 +393,7 @@ random_padding_bytes = 2F9E22AC78033569C4B3F7035D5FFAFC3EBF28ECD70A65926B2E64D91 @@ -403,47 +402,47 @@ random_padding_bytes = 2F9E22AC78033569C4B3F7035D5FFAFC3EBF28ECD70A65926B2E64D91 encrypted_data 80, 260 -+ FE000100DF92287F32BBAE22049A7DF8
8007F9FBE0103D8DF533E4ED59C0A25B
6D99FA0A9F2C83A8E45C28B2C7AB6D54
1B38C6254FDE09B773B38ECDB94B660D
71415CDFD4B8BAD8B91DC60B837BF420
5A781AB77885D8E0EF71E329D4B93563
02C4D2BE16E34A6A939559BE65EC2F0E
FE2CD561E9B058A13B5C8EEEB6907DF8
97AA7E48BE7F7DE1D13058476C8EDF60
A79330D0A9178E3FA064EF069063BC37
AAA3CC1B5E0E347290E5C1197A10C019
86035E20C0B106074C857906131ACE5F
75900037E16F66FC0D0D62383412CE7D
7A9DCC45AFC3025AD9976268664F4162
581175139A2F0910C69CDFBE9DA93CAC
8C3CA67A4278E2CD2A67EF9D9FF5D7F8
66E24596
FE000100A527714D9BE67624A4B3B780
5E93D3D845ECD997A689C7022449909D
7444BEF564B361443A949201616ACA30
E9FF622C4597A330CDFAF2FFC3185BD9
DF83E0D36F35C9921F0653202F696F7A
B61BFBF3FA44F8B7D228ED08CDA276B7
070F5C0FC6DD87FC8F27D61D63A358ED
557CEA2977F2F8474458091F94AA54B4
6F97BBCB0409F4A999ECC9DC86EE294C
608A9558C222B5D7FF4E339306583571
F8DD08B6A6FF9D475F93FCB6E7FCF61E
8EE1CB394378EBD7DCC86526852BA2FA
FD219984FC1BEA7D10EB655AE34E62B0
F38301D96160557777DCAD40C1FC311F
009D998BB147226A0316A83F4810D6C1
64755D5AD02F0144BE205F31E5AC778F
F3BBAAD7
Value generated above 6) Server responds with:
Received payload (excluding transport headers/trailers):
-+0000 | 00 00 00 00 00 00 00 00 01 30 87 1E B2 AF 9C 64 -0010 | 78 02 00 00 5C 07 E8 D0 B0 BB 83 C2 68 49 38 B7 -0020 | 6A C4 92 3A A5 45 C8 F0 59 2E 37 C5 BF 99 B8 DD -0030 | AE 33 E6 EE 39 4B 47 42 FE 50 02 00 07 3F F0 CE -0040 | BA 1A 9E F8 80 F8 85 E4 D0 E9 C1 EF 93 F6 1A 18 -0050 | BD 1B B7 8D 7A 36 D3 BF 1B 76 6E 28 13 91 02 C4 -0060 | 85 BA 0D 47 D3 83 C8 E6 03 9D BB D3 78 BA A6 4D -0070 | C0 67 F1 60 43 96 DA A0 4D 72 1E 11 0D 23 08 F4 -0080 | 95 A5 34 DE 44 30 06 DE 91 76 B4 B8 D9 27 24 84 -0090 | 02 E1 6D 69 FC 8F 73 48 54 BA FB F8 06 00 4E 43 -00A0 | 26 9C A8 C8 72 91 D4 F8 F4 36 84 3A 0C B3 FD 63 -00B0 | 1F E4 D7 F4 1E 8F AC 2E 34 EF 84 0B DA C0 33 14 -00C0 | 24 8A 4A F6 91 AD AB 7A 0C 6B DC CA 3D 85 FD 49 -00D0 | E4 9A E6 E5 18 AF 6D DA 95 CF 03 4F 90 EB 1B 42 -00E0 | 50 CD F6 03 F5 81 21 BC 3C 48 89 E0 C6 73 0C 89 -00F0 | 77 3A 8D 77 C9 FC 7A F3 05 C9 F9 3B D8 35 10 FB -0100 | F1 B9 8E D7 08 49 61 5A D2 C9 49 7F 9C 8A 94 4C -0110 | B1 D3 A5 1A D1 01 44 B7 77 7A 4A 5E D9 59 FF E0 -0120 | 3B 87 3D 4C F0 10 B3 61 C6 2F 7B 42 3E EC 02 CA -0130 | CE 0D 28 0A 6E 34 1E A5 BD AE 28 EF BA 69 D0 50 -0140 | 58 10 56 35 6B 7B 6F 66 D9 A9 51 44 16 57 88 42 -0150 | 24 0B ED 86 33 38 1F 0C 4A B0 06 C5 4B 60 29 E5 -0160 | 8E AF A3 6F 87 2E E7 C9 5B 5D F5 91 C7 C2 68 6A -0170 | 3E 61 48 9F FB 06 F9 10 AC 03 C5 F4 56 B9 A3 C3 -0180 | 4A 5C CA CE 67 6E 87 5C F3 E7 67 91 C4 AD 88 C3 -0190 | 1F 9D 6F 43 EF 4E 9E F4 8E 0D BC 30 1E F2 9D 2E -01A0 | B3 80 30 70 5E 1A 0F 25 F2 00 7D 54 12 96 66 38 -01B0 | DC 51 14 37 1A 63 08 2C 81 46 2C 3B 70 0E A5 35 -01C0 | 6E 28 92 3F 50 87 AF 05 1C FD 81 59 B6 4B 2A DC -01D0 | 80 4E 66 CB 70 F6 AD 25 17 21 C6 B8 CA 2F 21 68 -01E0 | 73 14 32 C9 67 BC 8B AE AD 02 96 40 E8 0C 2D C2 -01F0 | 7A E0 3C FC 5F C1 17 39 65 F9 CD F8 C2 93 1B 6E -0200 | C5 D4 63 51 D7 E7 9D 33 AF BE 6C 58 66 3F 3E AD -0210 | A5 B2 A4 9D F6 CD E1 C9 90 78 61 08 11 65 11 DD -0220 | 9F C6 73 E0 55 9D 84 A5 51 36 C0 01 83 0F E6 2C -0230 | 49 5C 90 39 8E 96 05 49 4E 24 10 7C 02 67 BD A1 -0240 | 29 79 7B 7B 1A CF 86 1C 04 F0 7D 6B BA 8B 11 1F -0250 | 88 86 11 E5 63 1E FF 97 16 C4 06 A7 AE 8B E2 DD -0260 | E1 D8 73 FB 57 1C 82 08 8A BD 18 FE 05 1F 6E 4A -0270 | EE 9B 90 94 C6 3F AC 38 CA 68 B4 EA 46 F1 2C D7 -0280 | 09 DF DA C9 44 ED 46 AF 79 2F DB A2
0000 | 00 00 00 00 00 00 00 00 01 48 D7 03 5A 96 9E 64 +0010 | 78 02 00 00 5C 07 E8 D0 3B 6C E1 1B ED C3 46 61 +0020 | B0 E7 0F 88 33 91 0C 6F 78 D0 02 2E 8C 91 C6 34 +0030 | 91 06 77 B5 9A 8B DD 7C FE 50 02 00 83 6A C3 4E +0040 | F2 22 34 FE 19 22 3F 02 F8 1B CB F2 E1 AD 74 F0 +0050 | B4 D3 CF B4 E5 0B E3 12 C6 B4 EA 17 8B 8A FC 86 +0060 | 26 5D C1 73 AF 33 24 8C C2 89 51 C2 FD 8E 1A 56 +0070 | 58 E4 85 AF C6 51 CA AC 1E 2F 31 F8 3D F5 52 2D +0080 | 8B 1D 04 1A C2 CD 1D 4D 02 B0 C8 C3 95 3B 74 65 +0090 | 2E 6F 85 A3 FE A2 7D F2 B9 7E 46 66 44 24 3D 06 +00A0 | 2D 55 8C DE 6F 96 95 0F F8 EA 2A 3B 4D 83 9E 58 +00B0 | DD 73 0C 44 5B 3E 75 00 FF C5 7E 1F A7 7D 12 CB +00C0 | 9E FF 24 DC 8E 6F 8B D2 64 60 EB 32 C6 BC 76 45 +00D0 | 44 B0 BC A0 47 0A FA 0E 99 E6 CD DF CB FC 3B 88 +00E0 | F4 6A 30 31 4F A0 3F 51 7B 16 FD C6 60 EF 62 96 +00F0 | 12 89 C8 03 67 7E DA 9B E5 9E 74 3C AC A4 E5 13 +0100 | 55 37 1B 94 CA DC DB 16 26 F8 9C 4F 5D 5D FB FF +0110 | DC BD 4A D7 E7 73 6C 9B 08 AB 6E FB 72 5A 07 2F +0120 | 02 4F 48 F2 64 11 78 3F AA 27 73 87 DA 62 EA EF +0130 | 5D BA 72 F6 80 53 61 CD 09 8D C6 C5 51 A8 7B 8F +0140 | 70 7E 0E 2A F0 49 EA F9 50 4D 6C C1 A8 16 3E 86 +0150 | B9 EC 77 CA 94 CB 92 58 51 73 6B 1F 01 EA 46 32 +0160 | 7D 2A 1B 7F C1 1F B0 A9 53 C6 9D 32 DB 5E 64 45 +0170 | 10 0C 6B 09 96 A6 77 F2 AF E1 E5 04 EE 20 28 87 +0180 | AB 15 B2 D7 EF 36 AE 6A B4 22 2F 2B 5D DD F4 3A +0190 | 22 52 D0 17 4B 87 86 96 6B 1D A5 A9 EC 9E 47 20 +01A0 | FD 83 0C 70 E6 5E 6B 27 61 80 77 35 8A E2 CC D6 +01B0 | 21 2E ED 54 91 12 27 1F 0A C5 B8 83 19 A6 C6 EA +01C0 | CD 8B 43 7B 12 67 C8 85 5B 10 80 B9 85 C8 3D 25 +01D0 | 99 1C F3 EA 6D 77 38 F7 10 CE D4 81 19 6B 8E D7 +01E0 | E3 33 05 8B 24 31 27 0E E0 AA 90 17 DF D1 40 CF +01F0 | 82 D5 CB 06 E5 D3 17 69 67 04 53 8F 50 42 06 73 +0200 | 44 CA D2 22 8D 4B 13 AA 51 10 DD B2 93 62 52 54 +0210 | DB 25 22 ED 64 32 69 26 78 BE D3 EB F9 2F C1 C7 +0220 | 0B 25 33 BF 6E 04 FB 4C D8 00 F9 B6 78 65 02 C9 +0230 | BF 0E FE A8 51 22 04 B7 4A 6E 89 A6 03 24 5B B1 +0240 | 57 8F EA A8 C8 7A F7 3E 6D B6 5F B4 B5 75 D5 65 +0250 | D1 DD C3 60 EF BF 20 60 87 82 6A 53 75 5B 13 8A +0260 | F9 FC 04 83 E9 7C 32 E1 6B A8 71 03 4D 93 D1 0A +0270 | A0 30 88 F3 8E DD 65 99 00 7F 1F 4F 09 E6 D6 2B +0280 | 6B 14 55 0E 49 B8 1F 28 EB 06 D6 5A
Payload (de)serialization:
server_DH_params_ok#d0e8075c nonce:int128 server_nonce:int128 encrypted_answer:string = Server_DH_Params;
@@ -465,8 +464,8 @@ random_padding_bytes = 2F9E22AC78033569C4B3F7035D5FFAFC3EBF28ECD70A65926B2E64D91
message_id 8, 8 -- 0130871EB2AF9C64
Message ID generated as specified here » ++ 0148D7035A969E64
Message ID generated as specified here » (unixtime() << 32) + (N*4) message_length @@ -483,19 +482,19 @@ random_padding_bytes = 2F9E22AC78033569C4B3F7035D5FFAFC3EBF28ECD70A65926B2E64D91nonce 24, 16 -+ B0BB83C2684938B76AC4923AA545C8F0
3B6CE11BEDC34661B0E70F8833910C6F
Value generated by client in Step 1 server_nonce 40, 16 -+ 592E37C5BF99B8DDAE33E6EE394B4742
78D0022E8C91C634910677B59A8BDD7C
Value received from server in Step 2 @@ -503,20 +502,20 @@ random_padding_bytes = 2F9E22AC78033569C4B3F7035D5FFAFC3EBF28ECD70A65926B2E64D91 encrypted_answer 56, 596 -+ FE500200073FF0CEBA1A9EF880F885E4
D0E9C1EF93F61A18BD1BB78D7A36D3BF
1B766E28139102C485BA0D47D383C8E6
039DBBD378BAA64DC067F1604396DAA0
4D721E110D2308F495A534DE443006DE
9176B4B8D927248402E16D69FC8F7348
54BAFBF806004E43269CA8C87291D4F8
F436843A0CB3FD631FE4D7F41E8FAC2E
34EF840BDAC03314248A4AF691ADAB7A
0C6BDCCA3D85FD49E49AE6E518AF6DDA
95CF034F90EB1B4250CDF603F58121BC
3C4889E0C6730C89773A8D77C9FC7AF3
05C9F93BD83510FBF1B98ED70849615A
D2C9497F9C8A944CB1D3A51AD10144B7
777A4A5ED959FFE03B873D4CF010B361
C62F7B423EEC02CACE0D280A6E341EA5
BDAE28EFBA69D050581056356B7B6F66
D9A9514416578842240BED8633381F0C
4AB006C54B6029E58EAFA36F872EE7C9
5B5DF591C7C2686A3E61489FFB06F910
AC03C5F456B9A3C34A5CCACE676E875C
F3E76791C4AD88C31F9D6F43EF4E9EF4
8E0DBC301EF29D2EB38030705E1A0F25
F2007D5412966638DC5114371A63082C
81462C3B700EA5356E28923F5087AF05
1CFD8159B64B2ADC804E66CB70F6AD25
1721C6B8CA2F2168731432C967BC8BAE
AD029640E80C2DC27AE03CFC5FC11739
65F9CDF8C2931B6EC5D46351D7E79D33
AFBE6C58663F3EADA5B2A49DF6CDE1C9
90786108116511DD9FC673E0559D84A5
5136C001830FE62C495C90398E960549
4E24107C0267BDA129797B7B1ACF861C
04F07D6BBA8B111F888611E5631EFF97
16C406A7AE8BE2DDE1D873FB571C8208
8ABD18FE051F6E4AEE9B9094C63FAC38
CA68B4EA46F12CD709DFDAC944ED46AF
792FDBA2
FE500200836AC34EF22234FE19223F02
F81BCBF2E1AD74F0B4D3CFB4E50BE312
C6B4EA178B8AFC86265DC173AF33248C
C28951C2FD8E1A5658E485AFC651CAAC
1E2F31F83DF5522D8B1D041AC2CD1D4D
02B0C8C3953B74652E6F85A3FEA27DF2
B97E466644243D062D558CDE6F96950F
F8EA2A3B4D839E58DD730C445B3E7500
FFC57E1FA77D12CB9EFF24DC8E6F8BD2
6460EB32C6BC764544B0BCA0470AFA0E
99E6CDDFCBFC3B88F46A30314FA03F51
7B16FDC660EF62961289C803677EDA9B
E59E743CACA4E51355371B94CADCDB16
26F89C4F5D5DFBFFDCBD4AD7E7736C9B
08AB6EFB725A072F024F48F26411783F
AA277387DA62EAEF5DBA72F6805361CD
098DC6C551A87B8F707E0E2AF049EAF9
504D6CC1A8163E86B9EC77CA94CB9258
51736B1F01EA46327D2A1B7FC11FB0A9
53C69D32DB5E6445100C6B0996A677F2
AFE1E504EE202887AB15B2D7EF36AE6A
B4222F2B5DDDF43A2252D0174B878696
6B1DA5A9EC9E4720FD830C70E65E6B27
618077358AE2CCD6212EED549112271F
0AC5B88319A6C6EACD8B437B1267C885
5B1080B985C83D25991CF3EA6D7738F7
10CED481196B8ED7E333058B2431270E
E0AA9017DFD140CF82D5CB06E5D31769
6704538F5042067344CAD2228D4B13AA
5110DDB293625254DB2522ED64326926
78BED3EBF92FC1C70B2533BF6E04FB4C
D800F9B6786502C9BF0EFEA8512204B7
4A6E89A603245BB1578FEAA8C87AF73E
6DB65FB4B575D565D1DDC360EFBF2060
87826A53755B138AF9FC0483E97C32E1
6BA871034D93D10AA03088F38EDD6599
007F1F4F09E6D62B6B14550E49B81F28
EB06D65A
See below Decrypt
-encrypted_answer
using the reverse of the process specified in step 6:+encrypted_answer = 073FF0CEBA1A9EF880F885E4D0E9C1EF93F61A18BD1BB78D7A36D3BF1B766E28139102C485BA0D47D383C8E6039DBBD378BAA64DC067F1604396DAA04D721E110D2308F495A534DE443006DE9176B4B8D927248402E16D69FC8F734854BAFBF806004E43269CA8C87291D4F8F436843A0CB3FD631FE4D7F41E8FAC2E34EF840BDAC03314248A4AF691ADAB7A0C6BDCCA3D85FD49E49AE6E518AF6DDA95CF034F90EB1B4250CDF603F58121BC3C4889E0C6730C89773A8D77C9FC7AF305C9F93BD83510FBF1B98ED70849615AD2C9497F9C8A944CB1D3A51AD10144B7777A4A5ED959FFE03B873D4CF010B361C62F7B423EEC02CACE0D280A6E341EA5BDAE28EFBA69D050581056356B7B6F66D9A9514416578842240BED8633381F0C4AB006C54B6029E58EAFA36F872EE7C95B5DF591C7C2686A3E61489FFB06F910AC03C5F456B9A3C34A5CCACE676E875CF3E76791C4AD88C31F9D6F43EF4E9EF48E0DBC301EF29D2EB38030705E1A0F25F2007D5412966638DC5114371A63082C81462C3B700EA5356E28923F5087AF051CFD8159B64B2ADC804E66CB70F6AD251721C6B8CA2F2168731432C967BC8BAEAD029640E80C2DC27AE03CFC5FC1173965F9CDF8C2931B6EC5D46351D7E79D33AFBE6C58663F3EADA5B2A49DF6CDE1C990786108116511DD9FC673E0559D84A55136C001830FE62C495C90398E9605494E24107C0267BDA129797B7B1ACF861C04F07D6BBA8B111F888611E5631EFF9716C406A7AE8BE2DDE1D873FB571C82088ABD18FE051F6E4AEE9B9094C63FAC38CA68B4EA46F12CD709DFDAC944ED46AF792FDBA2 -tmp_aes_key = 3826079A7BBD2CC9B9AE0E9D1BEEDA1A663CE630DC446D259DE256A1C953E8FA -tmp_aes_iv = 7A6748BA29AAC95EF75BD4588351617832FD34568EF1C4018F04F871FA05D41E
encrypted_answer = 836AC34EF22234FE19223F02F81BCBF2E1AD74F0B4D3CFB4E50BE312C6B4EA178B8AFC86265DC173AF33248CC28951C2FD8E1A5658E485AFC651CAAC1E2F31F83DF5522D8B1D041AC2CD1D4D02B0C8C3953B74652E6F85A3FEA27DF2B97E466644243D062D558CDE6F96950FF8EA2A3B4D839E58DD730C445B3E7500FFC57E1FA77D12CB9EFF24DC8E6F8BD26460EB32C6BC764544B0BCA0470AFA0E99E6CDDFCBFC3B88F46A30314FA03F517B16FDC660EF62961289C803677EDA9BE59E743CACA4E51355371B94CADCDB1626F89C4F5D5DFBFFDCBD4AD7E7736C9B08AB6EFB725A072F024F48F26411783FAA277387DA62EAEF5DBA72F6805361CD098DC6C551A87B8F707E0E2AF049EAF9504D6CC1A8163E86B9EC77CA94CB925851736B1F01EA46327D2A1B7FC11FB0A953C69D32DB5E6445100C6B0996A677F2AFE1E504EE202887AB15B2D7EF36AE6AB4222F2B5DDDF43A2252D0174B8786966B1DA5A9EC9E4720FD830C70E65E6B27618077358AE2CCD6212EED549112271F0AC5B88319A6C6EACD8B437B1267C8855B1080B985C83D25991CF3EA6D7738F710CED481196B8ED7E333058B2431270EE0AA9017DFD140CF82D5CB06E5D317696704538F5042067344CAD2228D4B13AA5110DDB293625254DB2522ED6432692678BED3EBF92FC1C70B2533BF6E04FB4CD800F9B6786502C9BF0EFEA8512204B74A6E89A603245BB1578FEAA8C87AF73E6DB65FB4B575D565D1DDC360EFBF206087826A53755B138AF9FC0483E97C32E16BA871034D93D10AA03088F38EDD6599007F1F4F09E6D62B6B14550E49B81F28EB06D65A +tmp_aes_key = 3956EDA6DB9239D3E00942D65FA2782983547D27A037FC9A3875196482457CF5 +tmp_aes_iv = ED25CF95B5053DDCC1F53F4AD1AF7DD0E5A4A21F89ECDFBB2F041BE4EDFD8445
Yielding:
-+answer_with_hash = 3C9D681E6DB06E8B9F3D3CA74BC92D7E67D227D0BA0D89B5B0BB83C2684938B76AC4923AA545C8F0592E37C5BF99B8DDAE33E6EE394B474203000000FE000100C71CAEB9C6B1C9048E6C522F70F13F73980D40238E3E21C14934D037563D930F48198A0AA7C14058229493D22530F4DBFA336F6E0AC925139543AED44CCE7C3720FD51F69458705AC68CD4FE6B6B13ABDC9746512969328454F18FAF8C595F642477FE96BB2A941D5BCD1D4AC8CC49880708FA9B378E3C4F3A9060BEE67CF9A4A4A695811051907E162753B56B0F6B410DBA74D8A84B2A14B3144E0EF1284754FD17ED950D5965B4B9DD46582DB1178D169C6BC465B0D6FF9CA3928FEF5B9AE4E418FC15E83EBEA0F87FA9FF5EED70050DED2849F47BF959D956850CE929851F0D8115F635B105EE2E4E15D04B2454BF6F4FADF034B10403119CD8E3B92FCC5BFE0001002FDAB5904B04F687AFF2E819845CF3BE57A147004CFFEF1C5DEA2574EB87C7A1462EAF356CBAD7B11BC1AAF4C64924555834B4E0FECB94118F21958824D8E0EB78FD33BA711806508E1EFA3BDB4520DBD4459CA6BAD3A8CD59874AE8295DBD0B6EC31C2A381406FCFBCA4031EDB433CDCF43551BEDAC54CBF8209542C22BC0D564FC8585945869AF496994DEE5E9B1E59C96020713B4B3AE90ED7DC68FD1DB5B81C2411E7C0E70893BC1A5804563D424AE95A453419AFFEB3B8A8AF7C9995041DDBB3117F105397B250C2FF1F565926000CC06E175B9A7078ABFA6383D0771822291D83BC82DCD16E991B4ACF7F9C17814F6715D3517F4E66401863418F16AABB2AF9C641C1005E08D6EEDB1 -answer = BA0D89B5B0BB83C2684938B76AC4923AA545C8F0592E37C5BF99B8DDAE33E6EE394B474203000000FE000100C71CAEB9C6B1C9048E6C522F70F13F73980D40238E3E21C14934D037563D930F48198A0AA7C14058229493D22530F4DBFA336F6E0AC925139543AED44CCE7C3720FD51F69458705AC68CD4FE6B6B13ABDC9746512969328454F18FAF8C595F642477FE96BB2A941D5BCD1D4AC8CC49880708FA9B378E3C4F3A9060BEE67CF9A4A4A695811051907E162753B56B0F6B410DBA74D8A84B2A14B3144E0EF1284754FD17ED950D5965B4B9DD46582DB1178D169C6BC465B0D6FF9CA3928FEF5B9AE4E418FC15E83EBEA0F87FA9FF5EED70050DED2849F47BF959D956850CE929851F0D8115F635B105EE2E4E15D04B2454BF6F4FADF034B10403119CD8E3B92FCC5BFE0001002FDAB5904B04F687AFF2E819845CF3BE57A147004CFFEF1C5DEA2574EB87C7A1462EAF356CBAD7B11BC1AAF4C64924555834B4E0FECB94118F21958824D8E0EB78FD33BA711806508E1EFA3BDB4520DBD4459CA6BAD3A8CD59874AE8295DBD0B6EC31C2A381406FCFBCA4031EDB433CDCF43551BEDAC54CBF8209542C22BC0D564FC8585945869AF496994DEE5E9B1E59C96020713B4B3AE90ED7DC68FD1DB5B81C2411E7C0E70893BC1A5804563D424AE95A453419AFFEB3B8A8AF7C9995041DDBB3117F105397B250C2FF1F565926000CC06E175B9A7078ABFA6383D0771822291D83BC82DCD16E991B4ACF7F9C17814F6715D3517F4E66401863418F16AABB2AF9C641C1005E08D6EEDB1
answer_with_hash = 70F677AA69190441C67862FB9CD0C689083BC134BA0D89B53B6CE11BEDC34661B0E70F8833910C6F78D0022E8C91C634910677B59A8BDD7C03000000FE000100C71CAEB9C6B1C9048E6C522F70F13F73980D40238E3E21C14934D037563D930F48198A0AA7C14058229493D22530F4DBFA336F6E0AC925139543AED44CCE7C3720FD51F69458705AC68CD4FE6B6B13ABDC9746512969328454F18FAF8C595F642477FE96BB2A941D5BCD1D4AC8CC49880708FA9B378E3C4F3A9060BEE67CF9A4A4A695811051907E162753B56B0F6B410DBA74D8A84B2A14B3144E0EF1284754FD17ED950D5965B4B9DD46582DB1178D169C6BC465B0D6FF9CA3928FEF5B9AE4E418FC15E83EBEA0F87FA9FF5EED70050DED2849F47BF959D956850CE929851F0D8115F635B105EE2E4E15D04B2454BF6F4FADF034B10403119CD8E3B92FCC5BFE0001001BEA1C03F21CA802A6E62922E4FEF1FAEC50248AF15A2BBA07A97D3D1FCD3EFCE454F5F51CDB120D8F1DAA89548F9AF41D18A6542B28F9153AA7E48122950F5E002E511DF55F81A6340259CA6DDCB1C19B3FEFF37F382AC719B2A535F76FFD41E14A34EBF7DE44DF8F355893EDA79ED914A9B83C31E6075A1E3F29EE7D682D6DE5A3161D05864E4402E2AF00A331ABD9BF5AFB2FB207DD314459E4AD791F4416C98E51F3FDD9F9210CC24CF14D775C60207950642B2E28B1E1FC0F39102EC590AFD76FB070759C6064E9884AE6F30D7969909A7FF99B1DA6E246DD7612194915BAC36F14139C1728546C0325DFF289D1339AF61772FFFD9C16F7D7AB92267AC85A969E64DAD6000E2A59A52B +answer = BA0D89B53B6CE11BEDC34661B0E70F8833910C6F78D0022E8C91C634910677B59A8BDD7C03000000FE000100C71CAEB9C6B1C9048E6C522F70F13F73980D40238E3E21C14934D037563D930F48198A0AA7C14058229493D22530F4DBFA336F6E0AC925139543AED44CCE7C3720FD51F69458705AC68CD4FE6B6B13ABDC9746512969328454F18FAF8C595F642477FE96BB2A941D5BCD1D4AC8CC49880708FA9B378E3C4F3A9060BEE67CF9A4A4A695811051907E162753B56B0F6B410DBA74D8A84B2A14B3144E0EF1284754FD17ED950D5965B4B9DD46582DB1178D169C6BC465B0D6FF9CA3928FEF5B9AE4E418FC15E83EBEA0F87FA9FF5EED70050DED2849F47BF959D956850CE929851F0D8115F635B105EE2E4E15D04B2454BF6F4FADF034B10403119CD8E3B92FCC5BFE0001001BEA1C03F21CA802A6E62922E4FEF1FAEC50248AF15A2BBA07A97D3D1FCD3EFCE454F5F51CDB120D8F1DAA89548F9AF41D18A6542B28F9153AA7E48122950F5E002E511DF55F81A6340259CA6DDCB1C19B3FEFF37F382AC719B2A535F76FFD41E14A34EBF7DE44DF8F355893EDA79ED914A9B83C31E6075A1E3F29EE7D682D6DE5A3161D05864E4402E2AF00A331ABD9BF5AFB2FB207DD314459E4AD791F4416C98E51F3FDD9F9210CC24CF14D775C60207950642B2E28B1E1FC0F39102EC590AFD76FB070759C6064E9884AE6F30D7969909A7FF99B1DA6E246DD7612194915BAC36F14139C1728546C0325DFF289D1339AF61772FFFD9C16F7D7AB92267AC85A969E64DAD6000E2A59A52B
Generated payload (excluding transport headers/trailers):
-0000 | BA 0D 89 B5 B0 BB 83 C2 68 49 38 B7 6A C4 92 3A -0010 | A5 45 C8 F0 59 2E 37 C5 BF 99 B8 DD AE 33 E6 EE -0020 | 39 4B 47 42 03 00 00 00 FE 00 01 00 C7 1C AE B9 +
+0130 | 1B EA 1C 03 F2 1C A8 02 A6 E6 29 22 E4 FE F1 FA +0140 | EC 50 24 8A F1 5A 2B BA 07 A9 7D 3D 1F CD 3E FC +0150 | E4 54 F5 F5 1C DB 12 0D 8F 1D AA 89 54 8F 9A F4 +0160 | 1D 18 A6 54 2B 28 F9 15 3A A7 E4 81 22 95 0F 5E +0170 | 00 2E 51 1D F5 5F 81 A6 34 02 59 CA 6D DC B1 C1 +0180 | 9B 3F EF F3 7F 38 2A C7 19 B2 A5 35 F7 6F FD 41 +0190 | E1 4A 34 EB F7 DE 44 DF 8F 35 58 93 ED A7 9E D9 +01A0 | 14 A9 B8 3C 31 E6 07 5A 1E 3F 29 EE 7D 68 2D 6D +01B0 | E5 A3 16 1D 05 86 4E 44 02 E2 AF 00 A3 31 AB D9 +01C0 | BF 5A FB 2F B2 07 DD 31 44 59 E4 AD 79 1F 44 16 +01D0 | C9 8E 51 F3 FD D9 F9 21 0C C2 4C F1 4D 77 5C 60 +01E0 | 20 79 50 64 2B 2E 28 B1 E1 FC 0F 39 10 2E C5 90 +01F0 | AF D7 6F B0 70 75 9C 60 64 E9 88 4A E6 F3 0D 79 +0200 | 69 90 9A 7F F9 9B 1D A6 E2 46 DD 76 12 19 49 15 +0210 | BA C3 6F 14 13 9C 17 28 54 6C 03 25 DF F2 89 D1 +0220 | 33 9A F6 17 72 FF FD 9C 16 F7 D7 AB 92 26 7A C8 +0230 | 5A 96 9E 640000 | BA 0D 89 B5 3B 6C E1 1B ED C3 46 61 B0 E7 0F 88 +0010 | 33 91 0C 6F 78 D0 02 2E 8C 91 C6 34 91 06 77 B5 +0020 | 9A 8B DD 7C 03 00 00 00 FE 00 01 00 C7 1C AE B9 0030 | C6 B1 C9 04 8E 6C 52 2F 70 F1 3F 73 98 0D 40 23 0040 | 8E 3E 21 C1 49 34 D0 37 56 3D 93 0F 48 19 8A 0A 0050 | A7 C1 40 58 22 94 93 D2 25 30 F4 DB FA 33 6F 6E @@ -533,23 +532,23 @@ answer = BA0D89B5B0BB83C2684938B76AC4923AA545C8F0592E37C5BF99B8DDAE33E6EE394B474 0100 | F4 7B F9 59 D9 56 85 0C E9 29 85 1F 0D 81 15 F6 0110 | 35 B1 05 EE 2E 4E 15 D0 4B 24 54 BF 6F 4F AD F0 0120 | 34 B1 04 03 11 9C D8 E3 B9 2F CC 5B FE 00 01 00 -0130 | 2F DA B5 90 4B 04 F6 87 AF F2 E8 19 84 5C F3 BE -0140 | 57 A1 47 00 4C FF EF 1C 5D EA 25 74 EB 87 C7 A1 -0150 | 46 2E AF 35 6C BA D7 B1 1B C1 AA F4 C6 49 24 55 -0160 | 58 34 B4 E0 FE CB 94 11 8F 21 95 88 24 D8 E0 EB -0170 | 78 FD 33 BA 71 18 06 50 8E 1E FA 3B DB 45 20 DB -0180 | D4 45 9C A6 BA D3 A8 CD 59 87 4A E8 29 5D BD 0B -0190 | 6E C3 1C 2A 38 14 06 FC FB CA 40 31 ED B4 33 CD -01A0 | CF 43 55 1B ED AC 54 CB F8 20 95 42 C2 2B C0 D5 -01B0 | 64 FC 85 85 94 58 69 AF 49 69 94 DE E5 E9 B1 E5 -01C0 | 9C 96 02 07 13 B4 B3 AE 90 ED 7D C6 8F D1 DB 5B -01D0 | 81 C2 41 1E 7C 0E 70 89 3B C1 A5 80 45 63 D4 24 -01E0 | AE 95 A4 53 41 9A FF EB 3B 8A 8A F7 C9 99 50 41 -01F0 | DD BB 31 17 F1 05 39 7B 25 0C 2F F1 F5 65 92 60 -0200 | 00 CC 06 E1 75 B9 A7 07 8A BF A6 38 3D 07 71 82 -0210 | 22 91 D8 3B C8 2D CD 16 E9 91 B4 AC F7 F9 C1 78 -0220 | 14 F6 71 5D 35 17 F4 E6 64 01 86 34 18 F1 6A AB -0230 | B2 AF 9C 64
Payload (de)serialization:
server_DH_inner_data#b5890dba nonce:int128 server_nonce:int128 g:int dh_prime:string g_a:string server_time:int = Server_DH_inner_data;
@@ -571,13 +570,13 @@ answer = BA0D89B5B0BB83C2684938B76AC4923AA545C8F0592E37C5BF99B8DDAE33E6EE394B474
nonce 4, 16 -+ B0BB83C2684938B76AC4923AA545C8F0
3B6CE11BEDC34661B0E70F8833910C6F
Value generated by client in Step 1 server_nonce 20, 16 -+ 592E37C5BF99B8DDAE33E6EE394B4742
78D0022E8C91C634910677B59A8BDD7C
Value received from server in Step 2 @@ -595,13 +594,13 @@ answer = BA0D89B5B0BB83C2684938B76AC4923AA545C8F0592E37C5BF99B8DDAE33E6EE394B474 g_a 300, 260 -+ FE0001002FDAB5904B04F687AFF2E819
845CF3BE57A147004CFFEF1C5DEA2574
EB87C7A1462EAF356CBAD7B11BC1AAF4
C64924555834B4E0FECB94118F219588
24D8E0EB78FD33BA711806508E1EFA3B
DB4520DBD4459CA6BAD3A8CD59874AE8
295DBD0B6EC31C2A381406FCFBCA4031
EDB433CDCF43551BEDAC54CBF8209542
C22BC0D564FC8585945869AF496994DE
E5E9B1E59C96020713B4B3AE90ED7DC6
8FD1DB5B81C2411E7C0E70893BC1A580
4563D424AE95A453419AFFEB3B8A8AF7
C9995041DDBB3117F105397B250C2FF1
F565926000CC06E175B9A7078ABFA638
3D0771822291D83BC82DCD16E991B4AC
F7F9C17814F6715D3517F4E664018634
18F16AAB
FE0001001BEA1C03F21CA802A6E62922
E4FEF1FAEC50248AF15A2BBA07A97D3D
1FCD3EFCE454F5F51CDB120D8F1DAA89
548F9AF41D18A6542B28F9153AA7E481
22950F5E002E511DF55F81A6340259CA
6DDCB1C19B3FEFF37F382AC719B2A535
F76FFD41E14A34EBF7DE44DF8F355893
EDA79ED914A9B83C31E6075A1E3F29EE
7D682D6DE5A3161D05864E4402E2AF00
A331ABD9BF5AFB2FB207DD314459E4AD
791F4416C98E51F3FDD9F9210CC24CF1
4D775C60207950642B2E28B1E1FC0F39
102EC590AFD76FB070759C6064E9884A
E6F30D7969909A7FF99B1DA6E246DD76
12194915BAC36F14139C1728546C0325
DFF289D1339AF61772FFFD9C16F7D7AB
92267AC8
g_a
diffie-hellman parameter@@ -610,34 +609,34 @@ answer = BA0D89B5B0BB83C2684938B76AC4923AA545C8F0592E37C5BF99B8DDAE33E6EE394B474 server_time 560, 4 -+ B2AF9C64
(1687990194 in decimal)5A969E64
(1688114778 in decimal)Server time 7) Client computes random 2048-bit number b (using a sufficient amount of entropy) and sends the server a message
First, generate a secure random 2048-bit number b:
-+b = 29F2FD3102D844146B82E7C115C554A80961BC260BCA739BB670787AF0A72A512BA2E47AD58D0C478415251E4D0F7A737C2BF06A364C6E995ED596C88F4685F412B60205ECB9FA3ECA18A5B7B2DBEF3F26614806067E2F5831BB9CFF38278A25BB79A8F081A9E72E92CF74DE524DFBC07B6F5F77DF5F1EFF385E0B943282DF43A220AF62387F662982CCEDB59302EAD733438089FE871856F3C6E9221198094EA76E20868AEC4A7D7C809223CB28627DF3A05961B5148BE043CC64ECA1BFCC427F476E8A6769CDD7F5B774311BC166DB8FEC80E7C2BB9DF3B391D5D441B6BB35F0828BB9A22C9151FC63F1F3C04517C127A0BB98A2850867D7074E8D0C2FC576
b = 744E93CF8FA7E1510D1FE832C1DCE2AF7B343B0D786CA507D1F34DBABF922AFFB3D0635EDE27ADF1F2B2A5471CC087A69665BB834C98D4CAEC542892AB02A4087734B6F3AE36A78FCF38A78659F15DBE4C416963955486C656A9AFD8AE81A3357B2FA6BEEB37A561356C5188D593D941A711C06A836ECBF684BF37437F033010432227DB935FDF2CA0B0BF0B644DEB64394D1BFB6A5DCAC8E117DB36E46B8EE8C5FE300276997EFA0B5BDA54C6C9F5F7D45B38E93A0FB2F33A2A929252D47BCB71CF0423DEA4E122F63551C3198C07BA84F95C36104761EF23D294F226FDA75AB3321C2F3A2071F52056688B9295C09EBF751E4CC2022BCD2E79BB716B23203D
Then compute
-g_b = pow(g, b) mod dh_prime
+g_b = 69A19DF1CA7E2F7EB2D1C4FB9BA2856EF2AA19510669FF991757F7A3A10AA176A81CBD993DC7BD794C4E169056601BABFFE5C1A8DC6BCB705BB24BDB5E17280D26DAF0A9A801558CB87A11E30D6E8DD29CC039D014EA819CD0F8148CBA1BDB21331FFCB6063ED8FB66A6E90A02A80B68CDE53CB45D1266E8C19617FDD5AFD824001FD16BF666A1946B54B45C751CDD535B3718C6BE7A2EBAD4B35F5CA61D128B5B10ED4223C08D7294FCE18C8D30B5CFC8D73A80469150F7180F5F76F4FEAA0156EFA7665BB37F87B5F9EEAA654550555C05F91342608BB76F1E394EA6C51CE64589540E8729F9F5AE1B33108E8D35233ABFEE824AA2B940C5F04335CA59E0C4
g_b = 55F3A678CBBC2D12C34DC41345387B1162E949DCA78F1D7DC02167AB9B983CAC956AE49E50FA0655C45CB7FD439238E6FAB3F4186794602FE44BE4194912B32536619A017A4DFE50D9893FF9C511B5DA8AE5A7598DDFD82BA0122DA7937E22BCE1F3F3C0CE51E6EBEA24FDA496C7365B0CFBC16671E06A10CB45A0749F520401C278E7F8A162BBDDF6973642A5E49E515962328297012984B36EF4D2D35C28C20CB25928B3F3D46BA6FC6FEE832F71F16347744F75085AA22F3677717D8F643F5AF88C394F87B149144CDA035977A08443679DC97E17642AF1C0519095686642E158A0F0D9CFAFE461ACABB41A72A76AE8FC5F39EDAF53DE68DEBE8EDEDFAB9B
7.1) generation of encrypted_data
Generated payload (excluding transport headers/trailers):
-+0000 | 54 B6 43 66 B0 BB 83 C2 68 49 38 B7 6A C4 92 3A -0010 | A5 45 C8 F0 59 2E 37 C5 BF 99 B8 DD AE 33 E6 EE -0020 | 39 4B 47 42 00 00 00 00 00 00 00 00 FE 00 01 00 -0030 | 69 A1 9D F1 CA 7E 2F 7E B2 D1 C4 FB 9B A2 85 6E -0040 | F2 AA 19 51 06 69 FF 99 17 57 F7 A3 A1 0A A1 76 -0050 | A8 1C BD 99 3D C7 BD 79 4C 4E 16 90 56 60 1B AB -0060 | FF E5 C1 A8 DC 6B CB 70 5B B2 4B DB 5E 17 28 0D -0070 | 26 DA F0 A9 A8 01 55 8C B8 7A 11 E3 0D 6E 8D D2 -0080 | 9C C0 39 D0 14 EA 81 9C D0 F8 14 8C BA 1B DB 21 -0090 | 33 1F FC B6 06 3E D8 FB 66 A6 E9 0A 02 A8 0B 68 -00A0 | CD E5 3C B4 5D 12 66 E8 C1 96 17 FD D5 AF D8 24 -00B0 | 00 1F D1 6B F6 66 A1 94 6B 54 B4 5C 75 1C DD 53 -00C0 | 5B 37 18 C6 BE 7A 2E BA D4 B3 5F 5C A6 1D 12 8B -00D0 | 5B 10 ED 42 23 C0 8D 72 94 FC E1 8C 8D 30 B5 CF -00E0 | C8 D7 3A 80 46 91 50 F7 18 0F 5F 76 F4 FE AA 01 -00F0 | 56 EF A7 66 5B B3 7F 87 B5 F9 EE AA 65 45 50 55 -0100 | 5C 05 F9 13 42 60 8B B7 6F 1E 39 4E A6 C5 1C E6 -0110 | 45 89 54 0E 87 29 F9 F5 AE 1B 33 10 8E 8D 35 23 -0120 | 3A BF EE 82 4A A2 B9 40 C5 F0 43 35 CA 59 E0 C4
0000 | 54 B6 43 66 3B 6C E1 1B ED C3 46 61 B0 E7 0F 88 +0010 | 33 91 0C 6F 78 D0 02 2E 8C 91 C6 34 91 06 77 B5 +0020 | 9A 8B DD 7C 00 00 00 00 00 00 00 00 FE 00 01 00 +0030 | 55 F3 A6 78 CB BC 2D 12 C3 4D C4 13 45 38 7B 11 +0040 | 62 E9 49 DC A7 8F 1D 7D C0 21 67 AB 9B 98 3C AC +0050 | 95 6A E4 9E 50 FA 06 55 C4 5C B7 FD 43 92 38 E6 +0060 | FA B3 F4 18 67 94 60 2F E4 4B E4 19 49 12 B3 25 +0070 | 36 61 9A 01 7A 4D FE 50 D9 89 3F F9 C5 11 B5 DA +0080 | 8A E5 A7 59 8D DF D8 2B A0 12 2D A7 93 7E 22 BC +0090 | E1 F3 F3 C0 CE 51 E6 EB EA 24 FD A4 96 C7 36 5B +00A0 | 0C FB C1 66 71 E0 6A 10 CB 45 A0 74 9F 52 04 01 +00B0 | C2 78 E7 F8 A1 62 BB DD F6 97 36 42 A5 E4 9E 51 +00C0 | 59 62 32 82 97 01 29 84 B3 6E F4 D2 D3 5C 28 C2 +00D0 | 0C B2 59 28 B3 F3 D4 6B A6 FC 6F EE 83 2F 71 F1 +00E0 | 63 47 74 4F 75 08 5A A2 2F 36 77 71 7D 8F 64 3F +00F0 | 5A F8 8C 39 4F 87 B1 49 14 4C DA 03 59 77 A0 84 +0100 | 43 67 9D C9 7E 17 64 2A F1 C0 51 90 95 68 66 42 +0110 | E1 58 A0 F0 D9 CF AF E4 61 AC AB B4 1A 72 A7 6A +0120 | E8 FC 5F 39 ED AF 53 DE 68 DE BE 8E DE DF AB 9B
Payload (de)serialization:
client_DH_inner_data#6643b654 nonce:int128 server_nonce:int128 retry_id:long g_b:string = Client_DH_Inner_Data;
@@ -659,19 +658,19 @@ answer = BA0D89B5B0BB83C2684938B76AC4923AA545C8F0592E37C5BF99B8DDAE33E6EE394B474
nonce 4, 16 -+ B0BB83C2684938B76AC4923AA545C8F0
3B6CE11BEDC34661B0E70F8833910C6F
Value generated by client in Step 1 server_nonce 20, 16 -+ 592E37C5BF99B8DDAE33E6EE394B4742
78D0022E8C91C634910677B59A8BDD7C
Value received from server in Step 2 g_b 36, 260 -+ FE00010069A19DF1CA7E2F7EB2D1C4FB
9BA2856EF2AA19510669FF991757F7A3
A10AA176A81CBD993DC7BD794C4E1690
56601BABFFE5C1A8DC6BCB705BB24BDB
5E17280D26DAF0A9A801558CB87A11E3
0D6E8DD29CC039D014EA819CD0F8148C
BA1BDB21331FFCB6063ED8FB66A6E90A
02A80B68CDE53CB45D1266E8C19617FD
D5AFD824001FD16BF666A1946B54B45C
751CDD535B3718C6BE7A2EBAD4B35F5C
A61D128B5B10ED4223C08D7294FCE18C
8D30B5CFC8D73A80469150F7180F5F76
F4FEAA0156EFA7665BB37F87B5F9EEAA
654550555C05F91342608BB76F1E394E
A6C51CE64589540E8729F9F5AE1B3310
8E8D35233ABFEE824AA2B940C5F04335
CA59E0C4
FE00010055F3A678CBBC2D12C34DC413
45387B1162E949DCA78F1D7DC02167AB
9B983CAC956AE49E50FA0655C45CB7FD
439238E6FAB3F4186794602FE44BE419
4912B32536619A017A4DFE50D9893FF9
C511B5DA8AE5A7598DDFD82BA0122DA7
937E22BCE1F3F3C0CE51E6EBEA24FDA4
96C7365B0CFBC16671E06A10CB45A074
9F520401C278E7F8A162BBDDF6973642
A5E49E515962328297012984B36EF4D2
D35C28C20CB25928B3F3D46BA6FC6FEE
832F71F16347744F75085AA22F367771
7D8F643F5AF88C394F87B149144CDA03
5977A08443679DC97E17642AF1C05190
95686642E158A0F0D9CFAFE461ACABB4
1A72A76AE8FC5F39EDAF53DE68DEBE8E
DEDFAB9B
Single-byte prefix denoting length, a 256-byte (2048-bit) string, and zero bytes of padding @@ -685,47 +684,47 @@ answer = BA0D89B5B0BB83C2684938B76AC4923AA545C8F0592E37C5BF99B8DDAE33E6EE394B474 The serialization of Client_DH_Inner_Data produces a string data. This is used to generate encrypted_data as specified in step 6, using the following inputs:
-+data = 54B64366B0BB83C2684938B76AC4923AA545C8F0592E37C5BF99B8DDAE33E6EE394B47420000000000000000FE00010069A19DF1CA7E2F7EB2D1C4FB9BA2856EF2AA19510669FF991757F7A3A10AA176A81CBD993DC7BD794C4E169056601BABFFE5C1A8DC6BCB705BB24BDB5E17280D26DAF0A9A801558CB87A11E30D6E8DD29CC039D014EA819CD0F8148CBA1BDB21331FFCB6063ED8FB66A6E90A02A80B68CDE53CB45D1266E8C19617FDD5AFD824001FD16BF666A1946B54B45C751CDD535B3718C6BE7A2EBAD4B35F5CA61D128B5B10ED4223C08D7294FCE18C8D30B5CFC8D73A80469150F7180F5F76F4FEAA0156EFA7665BB37F87B5F9EEAA654550555C05F91342608BB76F1E394EA6C51CE64589540E8729F9F5AE1B33108E8D35233ABFEE824AA2B940C5F04335CA59E0C4 -padding = 4670CB59FFB7033A86C62AA9 -tmp_aes_key = 3826079A7BBD2CC9B9AE0E9D1BEEDA1A663CE630DC446D259DE256A1C953E8FA -tmp_aes_iv = 7A6748BA29AAC95EF75BD4588351617832FD34568EF1C4018F04F871FA05D41E
data = 54B643663B6CE11BEDC34661B0E70F8833910C6F78D0022E8C91C634910677B59A8BDD7C0000000000000000FE00010055F3A678CBBC2D12C34DC41345387B1162E949DCA78F1D7DC02167AB9B983CAC956AE49E50FA0655C45CB7FD439238E6FAB3F4186794602FE44BE4194912B32536619A017A4DFE50D9893FF9C511B5DA8AE5A7598DDFD82BA0122DA7937E22BCE1F3F3C0CE51E6EBEA24FDA496C7365B0CFBC16671E06A10CB45A0749F520401C278E7F8A162BBDDF6973642A5E49E515962328297012984B36EF4D2D35C28C20CB25928B3F3D46BA6FC6FEE832F71F16347744F75085AA22F3677717D8F643F5AF88C394F87B149144CDA035977A08443679DC97E17642AF1C0519095686642E158A0F0D9CFAFE461ACABB41A72A76AE8FC5F39EDAF53DE68DEBE8EDEDFAB9B +padding = 85AA2A17BC9D581BA4E758F7 +tmp_aes_key = 3956EDA6DB9239D3E00942D65FA2782983547D27A037FC9A3875196482457CF5 +tmp_aes_iv = ED25CF95B5053DDCC1F53F4AD1AF7DD0E5A4A21F89ECDFBB2F041BE4EDFD8445
Process:
data_with_hash := SHA1(data) + data + padding (0-15 random bytes such that total length is divisible by 16) encrypted_data := AES256_ige_encrypt (data_with_hash, tmp_aes_key, tmp_aes_iv);
Output:
-+encrypted_data = B157BF3596956D48DF20A9E10AB507971128D20530E7E3B6087FB1BA74DBE774DE8C5A1AC9D01F70868ED3681FC694F30CE358FC74B854DB48143196F4555CB22721DB87E83D14286CBFB54F4C18F51C9EB719C5924B4E546D6B073C68BA93198FB7A91FB4538E88F6DA2DCCF3734F7EA0112595DEDD6E69C38A5F70E1507069C26E847FB39EEF4BE96863A898FB521117DA5289CAD8F26F3D912D3314A3D4E54D81202AB36ED3625704730BCB495D3464433CB2CC51D1A355AD788C04084CFF69AEAA9AC6282785192BE1C7C1E4AC14E91358056E1A4BC2B0D5E9840F19F70257AD7975DAC3338C5B393835296E51D4845C07962A58F88EE2E2E67C46B1F44CBCA4624D6BD8CC3BA6B59B635CAFF706893E6368404F0475975F652D4C7C69C4E8FA88A9023BB89895823132B3408C0326A4FE9EE68ADEBC56768F0329C9DB79108F080FCEE326135F10E4F89E4C9EF5
encrypted_data = C65BD12A8AD2A14AC0343F20F6BF3844DD8D81A18975F0827FEE29DD0CB97F7F1531D3EF781A9777F799EAD72CDBB84BEABCEBEC4C8232D51773493C6C4DB77A39B0BCD4AFED22FCEA12957BDF0FE5880FB8D6C38B12FE1C3F39694D12BFA0A3E124ACA9547F44678F5388561196085DE31F6AD05F30C87B213F0A2CC366DD73126FE3668FA448F84E5C1A2BCE76BE5B4B66001C69E6C124FA731FCF653F92A584DFAECCF247BD41AE10F3633999B0BA842BFFEC4B669BB01645167168DABE5C9EBEEA1B0ED94DAED0C7BA6CE6513A1F6292E9D9B85D8328C2A4D8BA3A43DCE484F2B5BB26FDD3337CA81D835A830EF56F623060DE68F93E21BBA5E893A2C352DA2DD697A6B562DDD677AB92FD748445509CDCCF5954D99D934BD7AC2730A36F096C0E8E57CA39C36EE8EDFDCED80B20C558B75A117944E57E0D89F333E2169ED6CA00C73886CD68CC7B116E2BE156E6
The length of the final string is 336 bytes.
7.2) set_client_DH_params query
Sent payload (excluding transport headers/trailers):
-+0000 | 00 00 00 00 00 00 00 00 BC D6 09 00 B2 AF 9C 64 -0010 | 78 01 00 00 1F 5F 04 F5 B0 BB 83 C2 68 49 38 B7 -0020 | 6A C4 92 3A A5 45 C8 F0 59 2E 37 C5 BF 99 B8 DD -0030 | AE 33 E6 EE 39 4B 47 42 FE 50 01 00 B1 57 BF 35 -0040 | 96 95 6D 48 DF 20 A9 E1 0A B5 07 97 11 28 D2 05 -0050 | 30 E7 E3 B6 08 7F B1 BA 74 DB E7 74 DE 8C 5A 1A -0060 | C9 D0 1F 70 86 8E D3 68 1F C6 94 F3 0C E3 58 FC -0070 | 74 B8 54 DB 48 14 31 96 F4 55 5C B2 27 21 DB 87 -0080 | E8 3D 14 28 6C BF B5 4F 4C 18 F5 1C 9E B7 19 C5 -0090 | 92 4B 4E 54 6D 6B 07 3C 68 BA 93 19 8F B7 A9 1F -00A0 | B4 53 8E 88 F6 DA 2D CC F3 73 4F 7E A0 11 25 95 -00B0 | DE DD 6E 69 C3 8A 5F 70 E1 50 70 69 C2 6E 84 7F -00C0 | B3 9E EF 4B E9 68 63 A8 98 FB 52 11 17 DA 52 89 -00D0 | CA D8 F2 6F 3D 91 2D 33 14 A3 D4 E5 4D 81 20 2A -00E0 | B3 6E D3 62 57 04 73 0B CB 49 5D 34 64 43 3C B2 -00F0 | CC 51 D1 A3 55 AD 78 8C 04 08 4C FF 69 AE AA 9A -0100 | C6 28 27 85 19 2B E1 C7 C1 E4 AC 14 E9 13 58 05 -0110 | 6E 1A 4B C2 B0 D5 E9 84 0F 19 F7 02 57 AD 79 75 -0120 | DA C3 33 8C 5B 39 38 35 29 6E 51 D4 84 5C 07 96 -0130 | 2A 58 F8 8E E2 E2 E6 7C 46 B1 F4 4C BC A4 62 4D -0140 | 6B D8 CC 3B A6 B5 9B 63 5C AF F7 06 89 3E 63 68 -0150 | 40 4F 04 75 97 5F 65 2D 4C 7C 69 C4 E8 FA 88 A9 -0160 | 02 3B B8 98 95 82 31 32 B3 40 8C 03 26 A4 FE 9E -0170 | E6 8A DE BC 56 76 8F 03 29 C9 DB 79 10 8F 08 0F -0180 | CE E3 26 13 5F 10 E4 F8 9E 4C 9E F5
0000 | 00 00 00 00 00 00 00 00 1C 47 04 00 5A 96 9E 64 +0010 | 78 01 00 00 1F 5F 04 F5 3B 6C E1 1B ED C3 46 61 +0020 | B0 E7 0F 88 33 91 0C 6F 78 D0 02 2E 8C 91 C6 34 +0030 | 91 06 77 B5 9A 8B DD 7C FE 50 01 00 C6 5B D1 2A +0040 | 8A D2 A1 4A C0 34 3F 20 F6 BF 38 44 DD 8D 81 A1 +0050 | 89 75 F0 82 7F EE 29 DD 0C B9 7F 7F 15 31 D3 EF +0060 | 78 1A 97 77 F7 99 EA D7 2C DB B8 4B EA BC EB EC +0070 | 4C 82 32 D5 17 73 49 3C 6C 4D B7 7A 39 B0 BC D4 +0080 | AF ED 22 FC EA 12 95 7B DF 0F E5 88 0F B8 D6 C3 +0090 | 8B 12 FE 1C 3F 39 69 4D 12 BF A0 A3 E1 24 AC A9 +00A0 | 54 7F 44 67 8F 53 88 56 11 96 08 5D E3 1F 6A D0 +00B0 | 5F 30 C8 7B 21 3F 0A 2C C3 66 DD 73 12 6F E3 66 +00C0 | 8F A4 48 F8 4E 5C 1A 2B CE 76 BE 5B 4B 66 00 1C +00D0 | 69 E6 C1 24 FA 73 1F CF 65 3F 92 A5 84 DF AE CC +00E0 | F2 47 BD 41 AE 10 F3 63 39 99 B0 BA 84 2B FF EC +00F0 | 4B 66 9B B0 16 45 16 71 68 DA BE 5C 9E BE EA 1B +0100 | 0E D9 4D AE D0 C7 BA 6C E6 51 3A 1F 62 92 E9 D9 +0110 | B8 5D 83 28 C2 A4 D8 BA 3A 43 DC E4 84 F2 B5 BB +0120 | 26 FD D3 33 7C A8 1D 83 5A 83 0E F5 6F 62 30 60 +0130 | DE 68 F9 3E 21 BB A5 E8 93 A2 C3 52 DA 2D D6 97 +0140 | A6 B5 62 DD D6 77 AB 92 FD 74 84 45 50 9C DC CF +0150 | 59 54 D9 9D 93 4B D7 AC 27 30 A3 6F 09 6C 0E 8E +0160 | 57 CA 39 C3 6E E8 ED FD CE D8 0B 20 C5 58 B7 5A +0170 | 11 79 44 E5 7E 0D 89 F3 33 E2 16 9E D6 CA 00 C7 +0180 | 38 86 CD 68 CC 7B 11 6E 2B E1 56 E6
Payload (de)serialization:
set_client_DH_params#f5045f1f nonce:int128 server_nonce:int128 encrypted_data:string = Set_client_DH_params_answer;
@@ -747,8 +746,8 @@ encrypted_data := AES256_ige_encrypt (data_with_hash, tmp_aes_key, tmp_aes_iv);<
message_id 8, 8 -- BCD60900B2AF9C64
Message ID generated as specified here » ++ 1C4704005A969E64
Message ID generated as specified here » (unixtime() << 32) + (N*4) message_length @@ -765,19 +764,19 @@ encrypted_data := AES256_ige_encrypt (data_with_hash, tmp_aes_key, tmp_aes_iv);<nonce 24, 16 -+ B0BB83C2684938B76AC4923AA545C8F0
3B6CE11BEDC34661B0E70F8833910C6F
Value generated by client in Step 1 server_nonce 40, 16 -+ 592E37C5BF99B8DDAE33E6EE394B4742
78D0022E8C91C634910677B59A8BDD7C
Value received from server in Step 2 @@ -786,17 +785,17 @@ encrypted_data := AES256_ige_encrypt (data_with_hash, tmp_aes_key, tmp_aes_iv);< encrypted_data 56, 340 -+ FE500100B157BF3596956D48DF20A9E1
0AB507971128D20530E7E3B6087FB1BA
74DBE774DE8C5A1AC9D01F70868ED368
1FC694F30CE358FC74B854DB48143196
F4555CB22721DB87E83D14286CBFB54F
4C18F51C9EB719C5924B4E546D6B073C
68BA93198FB7A91FB4538E88F6DA2DCC
F3734F7EA0112595DEDD6E69C38A5F70
E1507069C26E847FB39EEF4BE96863A8
98FB521117DA5289CAD8F26F3D912D33
14A3D4E54D81202AB36ED3625704730B
CB495D3464433CB2CC51D1A355AD788C
04084CFF69AEAA9AC6282785192BE1C7
C1E4AC14E91358056E1A4BC2B0D5E984
0F19F70257AD7975DAC3338C5B393835
296E51D4845C07962A58F88EE2E2E67C
46B1F44CBCA4624D6BD8CC3BA6B59B63
5CAFF706893E6368404F0475975F652D
4C7C69C4E8FA88A9023BB89895823132
B3408C0326A4FE9EE68ADEBC56768F03
29C9DB79108F080FCEE326135F10E4F8
9E4C9EF5
FE500100C65BD12A8AD2A14AC0343F20
F6BF3844DD8D81A18975F0827FEE29DD
0CB97F7F1531D3EF781A9777F799EAD7
2CDBB84BEABCEBEC4C8232D51773493C
6C4DB77A39B0BCD4AFED22FCEA12957B
DF0FE5880FB8D6C38B12FE1C3F39694D
12BFA0A3E124ACA9547F44678F538856
1196085DE31F6AD05F30C87B213F0A2C
C366DD73126FE3668FA448F84E5C1A2B
CE76BE5B4B66001C69E6C124FA731FCF
653F92A584DFAECCF247BD41AE10F363
3999B0BA842BFFEC4B669BB016451671
68DABE5C9EBEEA1B0ED94DAED0C7BA6C
E6513A1F6292E9D9B85D8328C2A4D8BA
3A43DCE484F2B5BB26FDD3337CA81D83
5A830EF56F623060DE68F93E21BBA5E8
93A2C352DA2DD697A6B562DDD677AB92
FD748445509CDCCF5954D99D934BD7AC
2730A36F096C0E8E57CA39C36EE8EDFD
CED80B20C558B75A117944E57E0D89F3
33E2169ED6CA00C73886CD68CC7B116E
2BE156E6
Encrypted client_DH_inner_data generated previously, serialized as a TL byte string 8) Auth key generation
The client computes the auth_key using formula
-g_a^b mod dh_prime
:+auth_key = 4B2FB207D87D159C14CFBC094533E4305721FD3F8CF1F4C2E218481DAD5BDE4BD687064C86A2F9B15DDF2EB43F6558C7EF91B99FADF614711AEDC6BBAE02F10B97EC40B81837695E58F11F2FAC48E949AF2DBC35E3A8476FF2C8C1CA85835634BEA918657C9801AD8876E8319C02ADF9209EAF5A3D429560D98816943C3019971B67372E146106CD27FB110A589DA8890F43348AF77143AFFCB08BEBEF89BD14BBFECC6AFE2B028C4BEC26ADC3D6786DABFF738CDAEBFE2D15806977DB496736716CD0B64938F1AEC6911FB56B70CC86BFB458048E970CD28E2F3844B7082493C1D46C0EA0AA798068C4160DA2C2D7562A6160255C6A1D7C3C47B7B8DD1C6D55
auth_key = 3527D417E01D4F221CECB78C9B5C29936C3CECC218DF73F86FECBAE6641A78998805CDF21B48558B6B5E51B6F4C639C6007CA58453CFEF33DD6CB6E2FF7FB6DDC9FE801BEC559EBD969B16FD49F6F808B18F8391DD336FB7D2E46D868444EE22B4805E1FDCA0EA115B81B3C23B138503DA4DC02EF639240BB60EB4A897A8A325090E221F4D60B37704D7ED709ABD6AC2C78FF6973B79A5196E8EC6F2814E5BD1A99F716085B03769044F38A8A6683EF8E772C6864C72D01A3EBD83F23C2372AC59CDD9260E104FFF8540A8EE5680BF2885FB385D8F6D759C9C66B355F84EB18CB00C4ADDBB7899AE5A3452C559862C3FC7C1171F5701A4D748830FA90C25F334
9) Final server reply
The server verifies and confirms that auth_key_hash is unique: since it's unique, it replies with the following:
Received payload (excluding transport headers/trailers):
-+0000 | 00 00 00 00 00 00 00 00 01 60 9B 67 B2 AF 9C 64 -0010 | 34 00 00 00 34 F7 CB 3B B0 BB 83 C2 68 49 38 B7 -0020 | 6A C4 92 3A A5 45 C8 F0 59 2E 37 C5 BF 99 B8 DD -0030 | AE 33 E6 EE 39 4B 47 42 6A F1 5D D5 EA 4A 58 6A -0040 | 27 E0 A1 DC 7E 26 D2 C4
0000 | 00 00 00 00 00 00 00 00 01 98 C9 4C 5A 96 9E 64 +0010 | 34 00 00 00 34 F7 CB 3B 3B 6C E1 1B ED C3 46 61 +0020 | B0 E7 0F 88 33 91 0C 6F 78 D0 02 2E 8C 91 C6 34 +0030 | 91 06 77 B5 9A 8B DD 7C 09 8D 03 93 43 E0 FD 46 +0040 | 06 5E 7C 90 20 D7 9F 17
Payload (de)serialization:
dh_gen_ok#3bcbf734 nonce:int128 server_nonce:int128 new_nonce_hash1:int128 = Set_client_DH_params_answer;
@@ -818,8 +817,8 @@ encrypted_data := AES256_ige_encrypt (data_with_hash, tmp_aes_key, tmp_aes_iv);<
message_id 8, 8 -- 01609B67B2AF9C64
Message ID generated as specified here » ++ 0198C94C5A969E64
Message ID generated as specified here » (unixtime() << 32) + (N*4) message_length @@ -836,19 +835,19 @@ encrypted_data := AES256_ige_encrypt (data_with_hash, tmp_aes_key, tmp_aes_iv);<nonce 24, 16 -+ B0BB83C2684938B76AC4923AA545C8F0
3B6CE11BEDC34661B0E70F8833910C6F
Value generated by client in Step 1 server_nonce 40, 16 -+ 592E37C5BF99B8DDAE33E6EE394B4742
78D0022E8C91C634910677B59A8BDD7C
Value received from server in Step 2 @@ -920,8 +919,11 @@ encrypted_data := AES256_ige_encrypt (data_with_hash, tmp_aes_key, tmp_aes_iv);< - - + + + new_nonce_hash1 56, 16 -+ 6AF15DD5EA4A586A27E0A1DC7E26D2C4
098D039343E0FD46065E7C9020D79F17
The 128 lower-order bits of SHA1 of the byte string derived from the new_nonce
string by adding a single byte with the value of 1, 2, or 3, and followed by another 8 bytes withauth_key_aux_hash
. Different values are required to prevent an intruder from changing server response dh_gen_ok into dh_gen_retry.