1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-12-12 14:27:23 +01:00
MadelineProto/old_docs/API_docs_v73/methods/help_getInviteText.md

52 lines
855 B
Markdown
Raw Normal View History

---
title: help.getInviteText
2018-03-23 16:23:49 +01:00
description: Get invitation text
---
## Method: help.getInviteText
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Get invitation text
### Return type: [help\_InviteText](../types/help_InviteText.md)
### Can bots use this method: **NO**
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$help_InviteText = $MadelineProto->help->getInviteText();
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/help.getInviteText`
Parameters:
Or, if you're into Lua:
```
help_InviteText = help.getInviteText({})
```