Story.reply_media_group()

Story.reply_media_group()

Bound method reply_media_group of Story.

Use as a shortcut for:

await client.send_media_group(
    chat_id=story.chat.id,
    media=list_of_media,
    reply_parameters=types.ReplyParameters(
        chat_id=chat_id,
        story_id=story.id
    )
)

Example

await story.reply_media_group(list_of_media)
Parameters:
  • media (list) – A list containing either InputMediaPhoto or InputMediaVideo objects describing photos and videos to be sent, must include 2–10 items.

  • paid_message_star_count (int, optional) – The number of Telegram Stars the user agreed to pay to send the messages.

  • disable_notification (bool, optional) – Sends the message silently. Users will receive a notification with no sound.

Returns:

On success, a Messages object is returned containing all the single messages sent.

Raises:

RPCError – In case of a Telegram RPC error.