mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2025-03-14 04:51:42 +01:00
Update content of files
This commit is contained in:
parent
7d9137542c
commit
dc21d54fbe
1 changed files with 231 additions and 3 deletions
|
@ -96,6 +96,12 @@
|
|||
<td>If true, notifications about the user's contacts who have joined Telegram will be disabled. User will still receive the corresponding message in the private chat. <code>getOption</code> needs to be called explicitly to fetch the latest value of the option, changed from another device</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>disable_network_statistics</td>
|
||||
<td>Boolean</td>
|
||||
<td>Yes</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. If true, then network statistics will be completely disabled</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>disable_persistent_network_statistics</td>
|
||||
<td>Boolean</td>
|
||||
<td>Yes</td>
|
||||
|
@ -132,6 +138,12 @@
|
|||
<td>If true, the <code>disable_notification</code> value specified in the request will be always used instead of the default value</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ignore_file_names</td>
|
||||
<td>Boolean</td>
|
||||
<td>Yes</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. If true, document file names will be ignored and numerical names will be used instead</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>ignore_inline_thumbnails</td>
|
||||
<td>Boolean</td>
|
||||
<td>Yes</td>
|
||||
|
@ -204,6 +216,12 @@
|
|||
<td>If true, IPv6 addresses will be preferred over IPv4 addresses</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>process_pinned_messages_as_mentions</td>
|
||||
<td>Boolean</td>
|
||||
<td>Yes</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. If true, then all pinned messages will be treated as mentions even posted without notification of chat members</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>use_pfs</td>
|
||||
<td>Boolean</td>
|
||||
<td>Yes</td>
|
||||
|
@ -228,12 +246,30 @@
|
|||
<td>A UTC time offset used for splitting messages by days. The option is reset automatically on each TDLib instance launch, so it needs to be set manually only if the time offset is changed during execution.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>active_story_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of active stories posted by the current user</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>added_shareable_chat_folder_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of added shareable chat folders for the current user</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>animation_search_bot_username</td>
|
||||
<td>String</td>
|
||||
<td>No</td>
|
||||
<td>Username of a bot which can be used in inline mode for animations search</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>anti_spam_bot_user_id</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. User identifier of the Telegram Anti-Spam bot</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>authentication_token</td>
|
||||
<td>String</td>
|
||||
<td>No</td>
|
||||
|
@ -252,6 +288,12 @@
|
|||
<td>Maximum number of members in a basic group</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>bio_length_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum allowed length of the current user's bio</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>call_connect_timeout_ms</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
|
@ -276,12 +318,60 @@
|
|||
<td>If true, the option “ignore_sensitive_content_restrictions” can be changed</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>can_use_text_entities_in_story_caption</td>
|
||||
<td>Boolean</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. If true, then the current user can use text entities in story captions</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>channel_bot_user_id</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td>Identifier of the bot which is shown as the sender of messages sent on behalf of channels when viewed from an outdated client</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>chat_available_reaction_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of manually chosen reactions for a chat</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>chat_boost_level_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum boost level available to a chat</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>chat_folder_chosen_chat_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of always included or excluded chats in a chat folder for the current user</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>chat_folder_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of chat folders that the current user can have</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>chat_folder_invite_link_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of shareable chat folders with owned invite links</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>chat_folder_new_chats_update_period</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The minimum interval between calls to getChatFolderNewChats in shareable chat folders</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>commit_hash</td>
|
||||
<td>String</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. If known, the hash of the source code commit that was used to build TDLib. Can be received synchronously.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>enabled_proxy_id</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
|
@ -306,40 +396,130 @@
|
|||
<td>Maximum number of forwarded messages per one request</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>gift_premium_from_attachment_menu</td>
|
||||
<td>Boolean</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. If true, then a suggestion to gift Telegram Premium needs to be shown in the attachment menu if appropriate</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>gift_premium_from_input_field</td>
|
||||
<td>Boolean</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. If true, then a suggestion to gift Telegram Premium needs to be shown in the input field if appropriate</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>giveaway_additional_chat_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of additional chats that can be added to a giveaway</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>giveaway_boost_count_per_premium</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The number of boosts that received by the channel for each giveaway prize</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>giveaway_country_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of countries that can be added to a giveaway</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>giveaway_duration_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of additional chats that can be added to a giveaway</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>group_anonymous_bot_user_id</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td>Identifier of the bot which is shown as the sender of anonymous messages in groups when viewed from an outdated client</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>is_premium</td>
|
||||
<td>Boolean</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. If true, then the current user subscribed to Telegram Premium</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>is_premium_available</td>
|
||||
<td>Boolean</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. If true, then the current user can subscribe to Telegram Premium. Otherwise, all premium-related features must be hidden</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>message_caption_length_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td>Maximum length of a message caption</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>message_reply_quote_length_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum length of quote from the replied message</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>message_text_length_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td>Maximum length of a message text</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>monthly_sent_story_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of stories that can be posted per month by the current user</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>my_id</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td>Identifier of the current user</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>notification_sound_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of saved notification sounds</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>notification_sound_duration_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum duration of an audio that can be used as a notification sound</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>notification_sound_size_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum size of the audio file that can be used as a notification sound</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>pinned_archived_chat_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td>Maximum number of pinned cloud chats in the Archive chat list. The same amount of secret chats can be pinned locally</td>
|
||||
<td>Maximum number of pinned cloud chats in the Archive chat list for the current user. The same amount of secret chats can be pinned locally</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>pinned_chat_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td>Maximum number of pinned cloud chats in the Main chat list. The same amount of secret chats can be pinned locally</td>
|
||||
<td>Maximum number of pinned cloud chats in the Main chat list for the current user. The same amount of secret chats can be pinned locally</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>pinned_forum_topic_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of pinned forum topics</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>pinned_saved_messages_topic_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of pinned topics in Saved Messages for the current user</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>photo_search_bot_username</td>
|
||||
|
@ -348,12 +528,54 @@
|
|||
<td>Username of a bot which can be used in inline mode for photos search</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>premium_gift_boost_count</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The number of boosts that is obtained by gifting Telegram Premium to another user</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>replies_bot_chat_id</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td>Identifier of the @replies bot</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>story_caption_length_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum length of story caption for the current user</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>story_stealth_mode_cooldown_period</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The number of seconds that must pass between before Stealth Mode can be enabled again</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>story_stealth_mode_future_period</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The number of seconds in the future the Stealth Mode will last</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>story_stealth_mode_past_period</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The number of seconds in the past during which all views of stories from the current user will be hidden if Stealth Mode is enabled</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>story_suggested_reaction_area_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of suggested reaction areas that can be added to a story</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>story_viewers_expiration_delay</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The number of seconds after story expiration date for which story viewers still can be received</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>suggested_language_pack_id</td>
|
||||
<td>String</td>
|
||||
<td>No</td>
|
||||
|
@ -417,7 +639,13 @@
|
|||
<td>version</td>
|
||||
<td>String</td>
|
||||
<td>No</td>
|
||||
<td>TDLib version. This options is guaranteed to come before all other updates</td>
|
||||
<td>TDLib version. This options is guaranteed to come before all other updates. Can be received synchronously.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>weekly_sent_story_count_max</td>
|
||||
<td>Integer</td>
|
||||
<td>No</td>
|
||||
<td><em>Since TDLib 1.8.24</em>. The maximum number of stories that can be posted per week by the current user</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
Loading…
Add table
Reference in a new issue