get_peer_stories()¶
- Client.get_peer_stories()
Get all active stories from an user/channel by using user identifiers.
Usable by Users Bots
- Parameters:
chat_id (
int|str) – Unique identifier (int) or username (str) of the target user/channel. For your personal story you can simply use “me” or “self”. For a contact that exists in your Telegram address book you can use his phone number (str). You can also use user profile/channel public link in form of t.me/<username> (str).- Returns:
Generator– On success, a generator yieldingStoryobjects is returned.
Example
async for story in app.get_peer_stories(chat_id): print(story)
- Raises:
raises ValueError: In case of invalid arguments.