diff --git a/data/web/corefork.telegram.org/api/stories.html b/data/web/corefork.telegram.org/api/stories.html index bd7131f100..2382b0302e 100644 --- a/data/web/corefork.telegram.org/api/stories.html +++ b/data/web/corefork.telegram.org/api/stories.html @@ -180,7 +180,6 @@ When the stories of a user are marked as hidden, the stories_hidden
storyView#b0bdeac5 flags:# blocked:flags.0?true blocked_my_stories_from:flags.1?true user_id:long date:int reaction:flags.2?Reaction = StoryView;
 stories.storyViewsList#46e9b9ec flags:# count:int reactions_count:int views:Vector<StoryView> users:Vector<User> next_offset:flags.0?string = stories.StoryViewsList;
 
-reactionCount#a3d1cb80 flags:# chosen_order:flags.0?int reaction:Reaction count:int = ReactionCount;
 storyViews#8d595cd6 flags:# has_viewers:flags.1?true views_count:int forwards_count:flags.2?int reactions:flags.3?Vector<ReactionCount> reactions_count:flags.4?int recent_viewers:flags.0?Vector<long> = StoryViews;
 stories.storyViews#de9eed1d views:Vector<StoryViews> users:Vector<User> = stories.StoryViews;
 
@@ -189,7 +188,8 @@ When the stories of a user are marked as hidden, the stories_hidden
 stories.getStoryViewsList#7ed23c57 flags:# just_contacts:flags.0?true reactions_first:flags.2?true peer:InputPeer q:flags.1?string id:int offset:string limit:int = stories.StoryViewsList;
 
 stories.getStoriesViews#28e16cc8 peer:InputPeer id:Vector<int> = stories.StoryViews;
-

Use stories.getStoryViewsList to obtain the list of users that have viewed a specific story.

+

Use stories.getStoryViewsList to obtain the list of users that have viewed a specific story we posted, returned as a list of storyView constructors; pass the returned next_offset (if present) to offset to paginate through the results.

+

Use stories.getStoriesViews to obtain info about the view count, forward count, reactions and recent viewers of one or more stories, using a single, unpaginated method call.

Replying to stories

inputReplyToStory#15b0f283 user_id:InputUser story_id:int = InputReplyTo;