MadelineProtoDocs/docs/request_secret_chat.md

29 lines
720 B
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
title: request_secret_chat
description: request_secret_chat parameters, return type and example
---
## Method: request_secret_chat
### Parameters:
| Name | Type |
|----------|---------------|
|id| A username, a bot API chat id, a tg-cli chat id, a [User](API_docs/types/User.md), an [InputPeer](API_docs/types/InputPeer.md), an [InputUser](API_docs/types/InputUser.md), a [Peer](API_docs/types/Peer.md)|
### Return type: Number
Returns the secret chat ID
### Example:
```php
2019-06-01 17:42:45 +02:00
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
2018-04-01 13:19:25 +02:00
$MadelineProto->start();
2019-06-01 17:42:45 +02:00
$MadelineProto->async(true);
2018-04-01 13:19:25 +02:00
2019-06-01 17:42:45 +02:00
$secret_chat_id = [yield](ASYNC.html) $MadelineProto->request_secret_chat('@danogentili');
2018-04-01 13:19:25 +02:00
```