MadelineProtoDocs/docs/getInfo.md

30 lines
780 B
Markdown
Raw Normal View History

2018-04-01 13:19:25 +02:00
---
2020-01-05 17:55:38 +01:00
title: getInfo
description: getInfo parameters, return type and example
redirect_from: /get_info.html
2018-04-01 13:19:25 +02:00
---
2020-01-05 17:55:38 +01:00
## Method: getInfo
2018-04-01 13:19:25 +02:00
### Parameters:
| Name | Type |
|----------|---------------|
|id| A username, a bot API chat id, a tg-cli chat id, a [Chat](API_docs/types/Chat.md), a [User](API_docs/types/User.md), an [InputPeer](API_docs/types/InputPeer.md), an [InputUser](API_docs/types/InputUser.md), an [InputChannel](API_docs/types/InputChannel.md), a [Peer](API_docs/types/Peer.md), or a [Chat](API_docs/types/Chat.md) object|
### Return type: [Info](Info.md)
2019-06-01 18:08:28 +02:00
### Example ([now fully async!](https://docs.madelineproto.xyz/docs/ASYNC.html)):
2018-04-01 13:19:25 +02:00
```php
2019-10-29 22:23:35 +01:00
$Chat = yield $MadelineProto->getInfo($id);
2018-04-01 13:19:25 +02:00
```
Or, if you're into Lua:
```lua
2019-10-29 22:23:35 +01:00
Chat = getInfo(id)
2018-04-01 13:19:25 +02:00
```