mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-11-26 20:35:03 +01:00
26 lines
785 B
Markdown
26 lines
785 B
Markdown
|
---
|
||
|
title: getInfo
|
||
|
description: getInfo parameters, return type and example
|
||
|
redirect_from: /get_info.html
|
||
|
grand_parent: "Telegram RPC API"
|
||
|
parent: "Methods"
|
||
|
---
|
||
|
## Method: getInfo
|
||
|
|
||
|
|
||
|
### Parameters:
|
||
|
|
||
|
| Name | Type |
|
||
|
|----------|---------------|
|
||
|
|id| A username, a bot API chat id, a tg-cli chat id, a [Chat](API_docs/types/Chat.html), a [User](API_docs/types/User.html), an [InputPeer](API_docs/types/InputPeer.html), an [InputUser](API_docs/types/InputUser.html), an [InputChannel](API_docs/types/InputChannel.html), a [Peer](API_docs/types/Peer.html), or a [Chat](API_docs/types/Chat.html) object|
|
||
|
|
||
|
### Return type: [Info](Info.html)
|
||
|
|
||
|
### Example ([now fully async!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
|
||
|
|
||
|
|
||
|
```php
|
||
|
$Chat = $MadelineProto->getInfo($id);
|
||
|
```
|
||
|
|