mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 17:55:35 +01:00
1.5 KiB
1.5 KiB
title | description | grand_parent | parent | image | redirect_from |
---|---|---|---|---|---|
updates.getState | You cannot use this method directly, please use the [event handler](https://docs.madelineproto.xyz/docs/UPDATES.html), instead. | Telegram RPC API | Methods | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/updates_getState.html |
Method: updates.getState
Warning: this is a low-level, complex method that must never be used directly.
The event handler provides a high-level abstraction that must be used instead of this method to fetch updates. If you want to fetch all users of a bot using a bot token, use getDialogIds or the high-level broadcast API, instead.
You cannot use this method directly, please use the event handler, instead.
Return type: updates.State
Can bots use this method: YES
MadelineProto Example (now async for huge speed and parallelism!):
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$updates_State = $MadelineProto->updates->getState();