getUpdates

Use this method to receive incoming updates using long polling (wiki). Returns an Array of Update objects. This method support both normal and static use

Arguments
Name Type Description Required
offset int | null | array Identifier of the first update to be returned. Must be greater by one than the highest among the identifiers of previously received updates. By default, updates starting with the earliest unconfirmed update are returned. An update is considered confirmed as soon as getUpdates is called with an offset higher than its update_id. The negative offset can be specified to retrieve updates starting from -offset update from the end of the updates queue. All previous updates will be forgotten. no
limit int | null Limits the number of updates to be retrieved. Values between 1-100 are accepted. Defaults to 100. no
timeout int | null Timeout in seconds for long polling. Defaults to 0, i.e. usual short polling. Should be positive, short polling should be used for testing purposes only. no
allowed_updates string[] | null A JSON-serialized list of the update types you want your bot to receive. For example, specify [“message”, “edited_channel_post”, “callback_query”] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all update types except chat_member (default). If not specified, the previous setting will be used.Please note that this parameter doesn't affect updates created before the call to the getUpdates, so unwanted updates may be received for a short period of time. no
token string | null You can use this method on another bot with specify this parameter no
forgot bool | null You can set to not receive request result, dont set it or pass null for turn it off no
answer bool | null You can set to answer to webhook, dont set it or pass null for turn it off no

Output : BPT\types\update[] | BPT\types\responseError | bool

Static or normal : Static

Examples :

telegram::getUpdates(offset: int | null, limit: int | null, timeout: int | null, allowed_updates: Array | null, token: String | null, forgot: Boolean | null, answer: Boolean | null);
telegram::getUpdates(['offset' => int | null, 'limit' => int | null, 'timeout' => int | null, 'allowed_updates' => Array | null, 'token' => String | null, 'forgot' => Boolean | null, 'answer' => Boolean | null]);
telegram::getUpdates();
$this->getUpdates(offset: int | null, limit: int | null, timeout: int | null, allowed_updates: Array | null, token: String | null, forgot: Boolean | null, answer: Boolean | null);
$this->getUpdates(['offset' => int | null, 'limit' => int | null, 'timeout' => int | null, 'allowed_updates' => Array | null, 'token' => String | null, 'forgot' => Boolean | null, 'answer' => Boolean | null]);
$this->getUpdates();