danog / MadelineProto

Async PHP client API for the telegram MTProto protocol
https://docs.madelineproto.xyz
GNU Affero General Public License v3.0
2.76k stars 619 forks source link

how to sendMediaDice, I tried to send it, but there was no animation #1426

Closed yudexiaobuwuqu closed 8 months ago

yudexiaobuwuqu commented 9 months ago

how to sendMediaDice, I tried to send it, but there was no animation. My code is as follows:

$MadelineProto = new API($session); $sendMessageTypingAction = ['' => 'sendMessageTypingAction']; $MadelineProto->messages->setTyping(['peer' => $update, 'action' => $sendMessageTypingAction]); sleep(2); $inputMediaDice = ['' => 'inputMediaDice', 'emoticon' => '🎲']; $MadelineProto->messages->sendMessage(['peer' => $update, 'message' => '🎲', 'media' => $inputMediaDice]);