mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2025-03-15 13:22:43 +01:00
Update content of files
This commit is contained in:
parent
52ba94a253
commit
14ebc562c8
1 changed files with 5 additions and 4 deletions
|
@ -1271,7 +1271,7 @@ basicGroupFullInfo photo:chatPhoto description:string creator_user_id:int53 memb
|
|||
//@member_count Number of members in the supergroup or channel; 0 if unknown. Currently, it is guaranteed to be known only if the supergroup or channel was received through
|
||||
//-getChatSimilarChats, getChatsToSendStories, getCreatedPublicChats, getGroupsInCommon, getInactiveSupergroupChats, getRecommendedChats, getSuitableDiscussionChats,
|
||||
//-getUserPrivacySettingRules, getVideoChatAvailableParticipants, searchChatsNearby, searchPublicChats, or in chatFolderInviteLinkInfo.missing_chat_ids, or in userFullInfo.personal_chat_id,
|
||||
//-or for chats with messages or stories from publicForwards
|
||||
//-or for chats with messages or stories from publicForwards and foundStories
|
||||
//@boost_level Approximate boost level for the chat
|
||||
//@has_linked_chat True, if the channel has a discussion group, or the supergroup is the designated discussion group for a channel
|
||||
//@has_location True, if the supergroup is connected to a location, i.e. the supergroup is a location-based supergroup
|
||||
|
@ -9540,17 +9540,18 @@ getStory story_sender_chat_id:int53 story_id:int32 only_local:Bool = Story;
|
|||
//@description Returns supergroup and channel chats in which the current user has the right to post stories. The chats must be rechecked with canSendStory before actually trying to post a story there
|
||||
getChatsToSendStories = Chats;
|
||||
|
||||
//@description Checks whether the current user can send a story on behalf of a chat; requires can_post_stories right for supergroup and channel chats @chat_id Chat identifier
|
||||
//@description Checks whether the current user can send a story on behalf of a chat; requires can_post_stories right for supergroup and channel chats
|
||||
//@chat_id Chat identifier. Pass Saved Messages chat identifier when posting a story on behalf of the current user
|
||||
canSendStory chat_id:int53 = CanSendStoryResult;
|
||||
|
||||
//@description Sends a new story to a chat; requires can_post_stories right for supergroup and channel chats. Returns a temporary story
|
||||
//@chat_id Identifier of the chat that will post the story
|
||||
//@chat_id Identifier of the chat that will post the story. Pass Saved Messages chat identifier when posting a story on behalf of the current user
|
||||
//@content Content of the story
|
||||
//@areas Clickable rectangle areas to be shown on the story media; pass null if none
|
||||
//@caption Story caption; pass null to use an empty caption; 0-getOption("story_caption_length_max") characters; can have entities only if getOption("can_use_text_entities_in_story_caption")
|
||||
//@privacy_settings The privacy settings for the story; ignored for stories sent to supergroup and channel chats
|
||||
//@active_period Period after which the story is moved to archive, in seconds; must be one of 6 * 3600, 12 * 3600, 86400, or 2 * 86400 for Telegram Premium users, and 86400 otherwise
|
||||
//@from_story_full_id Full identifier of the original story, which content was used to create the story
|
||||
//@from_story_full_id Full identifier of the original story, which content was used to create the story; pass null if the story isn't repost of another story
|
||||
//@is_posted_to_chat_page Pass true to keep the story accessible after expiration
|
||||
//@protect_content Pass true if the content of the story must be protected from forwarding and screenshotting
|
||||
sendStory chat_id:int53 content:InputStoryContent areas:inputStoryAreas caption:formattedText privacy_settings:StoryPrivacySettings active_period:int32 from_story_full_id:storyFullId is_posted_to_chat_page:Bool protect_content:Bool = Story;
|
||||
|
|
Loading…
Add table
Reference in a new issue