forward_messages¶
-
template<class Agent>
api_result<array_t<message_id_t>, Agent&&> forward_messages(Agent &&agent, forward_messages_args_t args)¶
-
template<class Agent, class F>
void forward_messages(Agent &&agent, forward_messages_args_t args, F &&callback)¶ agent
is any object satisfying agent concept.callback
is any callable object acceptingexpected<array_t<message_id_t>>
.Use this method to forward multiple messages of any kind. If some of the specified messages can’t be found or forwarded, they are skipped. Service messages and messages with protected content can’t be forwarded. Album grouping is kept for forwarded messages. On success, an array of MessageId of the sent messages is returned.
-
struct forward_messages_args_t¶
Arguments that should be passed to
forward_messages()
.Unique identifier for the target chat or username of the target channel (in the format @channelusername)
Unique identifier for the chat where the original messages were sent (or channel username in the format @channelusername)
A JSON-serialized list of 1-100 identifiers of messages in the chat from_chat_id to forward. The identifiers must be specified in a strictly increasing order.
-
optional_t<integer_t> message_thread_id¶
Unique identifier for the target message thread (topic) of the forum; for forum supergroups only
-
optional_t<boolean_t> disable_notification¶
Sends the messages silently. Users will receive a notification with no sound.
-
optional_t<boolean_t> protect_content¶
Protects the contents of the forwarded messages from forwarding and saving
-
optional_t<integer_t> message_thread_id¶