MadelineProtoDocs/docs/requestSecretChat.md

28 lines
721 B
Markdown
Raw Normal View History

2024-05-01 14:53:46 +02:00
---
title: requestSecretChat
description: requestSecretChat parameters, return type and example
redirect_from: /request_secret_chat.html
grand_parent: "Telegram RPC API"
parent: "Methods"
---
## Method: requestSecretChat
### Parameters:
| Name | Type |
|----------|---------------|
2024-05-23 18:25:50 +02:00
|id| A username, a bot API chat id, a [User](API_docs/types/User.html), an [InputPeer](API_docs/types/InputPeer.html), an [InputUser](API_docs/types/InputUser.html), a [Peer](API_docs/types/Peer.html)|
2024-05-01 14:53:46 +02:00
### Return type: Number
Returns the secret chat ID
### Example ([now fully async!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
```php
$secret_chat_id = $MadelineProto->requestSecretChat('@danogentili');
```