MadelineProtoDocs/old_docs/API_docs_v23/methods/updates.getDifference.md

66 lines
2.6 KiB
Markdown
Raw Permalink Normal View History

2018-04-01 13:19:25 +02:00
---
title: updates.getDifference
2020-06-16 17:50:25 +02:00
description: Get new [updates](https://core.telegram.org/api/updates).
2018-04-04 19:52:48 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
2019-12-27 18:46:25 +01:00
redirect_from: /API_docs/methods/updates_getDifference.html
2018-04-01 13:19:25 +02:00
---
2020-06-16 17:50:25 +02:00
# Method: updates.getDifference
2018-04-01 13:19:25 +02:00
[Back to methods index](index.md)
2020-06-16 17:50:25 +02:00
Get new [updates](https://core.telegram.org/api/updates).
2018-04-01 13:19:25 +02:00
2019-09-02 17:41:28 +02:00
### Parameters:
2018-04-01 13:19:25 +02:00
2019-09-02 17:41:28 +02:00
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
2020-06-16 17:50:25 +02:00
|pts|[int](../types/int.md) | PTS, see [updates](https://core.telegram.org/api/updates). | Yes|
|pts\_total\_limit|[int](../types/int.md) | For fast updating: if provided and `pts + pts_total_limit < remote pts`, [updates.differenceTooLong](../constructors/updates.differenceTooLong.md) will be returned.<br>Simply tells the server to not return the difference if it is bigger than `pts_total_limit`<br>If the remote pts is too big (&gt; ~4000000), this field will default to 1000000 | Optional|
|date|[int](../types/int.md) | date, see [updates](https://core.telegram.org/api/updates). | Yes|
|qts|[int](../types/int.md) | QTS, see [updates](https://core.telegram.org/api/updates). | Yes|
2019-09-02 17:41:28 +02:00
2019-12-27 18:25:37 +01:00
### Return type: [updates.Difference](../types/updates.Difference.md)
2019-09-02 17:41:28 +02:00
### Can bots use this method: **YES**
### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
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();
2020-06-16 17:50:25 +02:00
$updates.Difference = $MadelineProto->updates->getDifference(['pts' => int, 'pts_total_limit' => int, 'date' => int, 'qts' => int, ]);
2019-09-02 17:41:28 +02:00
```
Or, if you're into Lua:
```lua
2020-06-16 17:50:25 +02:00
updates.Difference = updates.getDifference({pts=int, pts_total_limit=int, date=int, qts=int, })
2019-09-02 17:41:28 +02:00
```
### Errors
| Code | Type | Description |
|------|----------|---------------|
|400|CDN_METHOD_INVALID|You can't call this method in a CDN DC|
|400|DATE_EMPTY|Date empty|
|400|PERSISTENT_TIMESTAMP_EMPTY|Persistent timestamp empty|
|400|PERSISTENT_TIMESTAMP_INVALID|Persistent timestamp invalid|
|406|AUTH_KEY_DUPLICATED|An auth key with the same ID was already generated|
|401|AUTH_KEY_PERM_EMPTY|The temporary auth key must be binded to the permanent auth key to use these methods.|
|401|SESSION_PASSWORD_NEEDED|2FA is enabled, use a password to login|
2020-06-16 17:50:25 +02:00
|-500|No workers running|Internal error|
2020-09-12 12:47:38 +02:00
|-504|memory limit exit|Internal error|
2019-09-02 17:41:28 +02:00
|-503|Timeout|Timeout while fetching data|
2018-04-01 13:19:25 +02:00