MadelineProto/docs/get_dialogs.md

27 lines
402 B
Markdown
Raw Normal View History

2017-08-18 13:27:44 +02:00
---
title: get_dialogs
description: get_dialogs parameters, return type and example
---
## Method: get_dialogs
2017-08-25 14:29:02 +02:00
Gets full list of dialogs
2017-08-18 13:27:44 +02:00
### Return type: Array of [Peer objects](API_docs/types/Peer.md)
### Example:
```
$MadelineProto = new \danog\MadelineProto\API();
$MadelineProto->start();
2017-08-18 13:27:44 +02:00
$Peers = $MadelineProto->get_dialogs();
```
Or, if you're into Lua:
```
Peers = get_dialogs()
2017-08-18 13:27:44 +02:00
```