MadelineProto/docs/API_docs/methods/messages_sendMultiMedia.md
2017-11-15 12:41:58 +00:00

2.2 KiB

title description
messages.sendMultiMedia messages.sendMultiMedia parameters, return type and example

Method: messages.sendMultiMedia

Back to methods index

Parameters:

Name Type Required
silent Bool Optional
background Bool Optional
clear_draft Bool Optional
peer InputPeer Yes
reply_to_msg_id int Optional
multi_media Array of InputSingleMedia Yes

Return type: Updates

Can bots use this method: YES

Example:

$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) { // Login as a bot
    $MadelineProto->bot_login($token);
}
if (isset($number)) { // Login as a user
    $sentCode = $MadelineProto->phone_login($number);
    echo 'Enter the code you received: ';
    $code = '';
    for ($x = 0; $x < $sentCode['type']['length']; $x++) {
        $code .= fgetc(STDIN);
    }
    $MadelineProto->complete_phone_login($code);
}

$Updates = $MadelineProto->messages->sendMultiMedia(['silent' => Bool, 'background' => Bool, 'clear_draft' => Bool, 'peer' => InputPeer, 'reply_to_msg_id' => int, 'multi_media' => [InputSingleMedia], ]);

Or, if you're using the PWRTelegram HTTP API:

As a bot:

POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline

Parameters:

  • method - messages.sendMultiMedia
  • params - {"silent": Bool, "background": Bool, "clear_draft": Bool, "peer": InputPeer, "reply_to_msg_id": int, "multi_media": [InputSingleMedia], }

As a user:

POST/GET to https://api.pwrtelegram.xyz/userTOKEN/messages.sendMultiMedia

Parameters:

silent - Json encoded Bool

background - Json encoded Bool

clear_draft - Json encoded Bool

peer - Json encoded InputPeer

reply_to_msg_id - Json encoded int

multi_media - Json encoded array of InputSingleMedia

Or, if you're into Lua:

Updates = messages.sendMultiMedia({silent=Bool, background=Bool, clear_draft=Bool, peer=InputPeer, reply_to_msg_id=int, multi_media={InputSingleMedia}, })