2018-04-01 13:19:25 +02:00
|
|
|
---
|
2019-03-08 13:49:23 +01:00
|
|
|
title: bots.sendCustomRequest
|
|
|
|
description: Send a custom request to the bot API
|
2018-04-04 19:52:48 +02:00
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
2018-04-01 13:19:25 +02:00
|
|
|
---
|
2019-03-08 13:49:23 +01:00
|
|
|
# Method: bots.sendCustomRequest
|
2018-04-01 13:19:25 +02:00
|
|
|
[Back to methods index](index.md)
|
|
|
|
|
|
|
|
|
2019-03-08 13:49:23 +01:00
|
|
|
Send a custom request to the bot API
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
### Parameters:
|
|
|
|
|
2018-08-29 11:18:25 +02:00
|
|
|
| Name | Type | Description | Required |
|
|
|
|
|----------|---------------|-------------|----------|
|
2019-03-08 13:49:23 +01:00
|
|
|
|custom\_method|[string](../types/string.md) | The method to call | Yes|
|
|
|
|
|params|[DataJSON](../types/DataJSON.md) | Method parameters | Yes|
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
|
2019-03-08 13:49:23 +01:00
|
|
|
### Return type: [DataJSON](../types/DataJSON.md)
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
### Can bots use this method: **YES**
|
|
|
|
|
|
|
|
|
|
|
|
### MadelineProto Example:
|
|
|
|
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```php
|
2018-04-01 13:19:25 +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-04-01 13:19:25 +02:00
|
|
|
include 'madeline.php';
|
|
|
|
|
|
|
|
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
|
|
|
|
$MadelineProto->start();
|
|
|
|
|
2019-03-08 13:49:23 +01:00
|
|
|
$DataJSON = $MadelineProto->bots->sendCustomRequest(['custom_method' => 'string', 'params' => DataJSON, ]);
|
2018-04-01 13:19:25 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
2018-10-17 17:10:50 +02:00
|
|
|
```lua
|
2019-03-08 13:49:23 +01:00
|
|
|
DataJSON = bots.sendCustomRequest({custom_method='string', params=DataJSON, })
|
2018-04-01 13:19:25 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
### Errors this method can return:
|
|
|
|
|
|
|
|
| Error | Description |
|
|
|
|
|----------|---------------|
|
2019-03-08 13:49:23 +01:00
|
|
|
|USER_BOT_INVALID|This method can only be called by a bot|
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
|