MadelineProto/old_docs/API_docs_v68/methods/help_getInviteText.md

52 lines
855 B
Markdown
Raw Normal View History

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