2018-04-01 13:19:25 +02:00
|
|
|
---
|
2018-04-01 13:24:46 +02:00
|
|
|
title: auth.sendCall
|
|
|
|
description: Send verification phone call
|
2018-04-01 13:19:25 +02:00
|
|
|
---
|
2018-04-01 13:24:46 +02:00
|
|
|
## Method: auth.sendCall
|
2018-04-01 13:19:25 +02:00
|
|
|
[Back to methods index](index.md)
|
|
|
|
|
|
|
|
|
2018-04-01 13:24:46 +02:00
|
|
|
Send verification phone call
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
### Parameters:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
|
|
|
|phone\_number|[string](../types/string.md) | Yes|The phone number|
|
|
|
|
|phone\_code\_hash|[string](../types/string.md) | Yes|The phone code hash|
|
|
|
|
|
|
|
|
|
2018-04-01 13:24:46 +02:00
|
|
|
### Return type: [Bool](../types/Bool.md)
|
2018-04-01 13:19:25 +02:00
|
|
|
|
2018-04-01 13:24:46 +02:00
|
|
|
### Can bots use this method: **YES**
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
### MadelineProto Example:
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
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();
|
|
|
|
|
2018-04-01 13:24:46 +02:00
|
|
|
$Bool = $MadelineProto->auth->sendCall(['phone_number' => 'string', 'phone_code_hash' => 'string', ]);
|
2018-04-01 13:19:25 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
|
|
|
|
|
2018-04-01 13:24:46 +02:00
|
|
|
### As a bot:
|
|
|
|
|
|
|
|
POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
* method - auth.sendCall
|
|
|
|
* params - `{"phone_number": "string", "phone_code_hash": "string", }`
|
|
|
|
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
### As a user:
|
|
|
|
|
2018-04-01 13:24:46 +02:00
|
|
|
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/auth.sendCall`
|
2018-04-01 13:19:25 +02:00
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
phone_number - Json encoded string
|
|
|
|
|
|
|
|
phone_code_hash - Json encoded string
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```
|
2018-04-01 13:24:46 +02:00
|
|
|
Bool = auth.sendCall({phone_number='string', phone_code_hash='string', })
|
2018-04-01 13:19:25 +02:00
|
|
|
```
|
|
|
|
|