MadelineProtoDocs/docs/API_docs/methods/invokeWithMessagesRange.md

47 lines
1.0 KiB
Markdown
Raw Normal View History

2018-06-29 13:59:08 +02:00
---
title: invokeWithMessagesRange
description: Invoke with messages range
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Method: invokeWithMessagesRange
[Back to methods index](index.md)
Invoke with messages range
### Parameters:
2018-08-29 11:18:25 +02:00
| Name | Type | Description | Required |
|----------|---------------|-------------|----------|
|range|[MessageRange](../types/MessageRange.md) | The range | Yes|
|query|[!X](../types/!X.md) | The query | Yes|
2018-06-29 13:59:08 +02:00
### Return type: [X](../types/X.md)
### Can bots use this method: **YES**
### MadelineProto Example:
```php
2018-06-29 13:59:08 +02:00
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
2019-03-12 13:25:41 +01:00
define('MADELINE_BRANCH', '');
2018-06-29 13:59:08 +02:00
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$X = $MadelineProto->invokeWithMessagesRange(['range' => MessageRange, 'query' => !X, ]);
```
Or, if you're into Lua:
```lua
2018-06-29 13:59:08 +02:00
X = invokeWithMessagesRange({range=MessageRange, query=!X, })
```