MadelineProto/docs/API_docs/methods/help_getRecentMeUrls.md

68 lines
1.3 KiB
Markdown
Raw Normal View History

2017-10-14 11:50:46 +02:00
---
title: help.getRecentMeUrls
2018-03-23 16:23:49 +01:00
description: Get recent t.me URLs
2017-10-14 11:50:46 +02:00
---
## Method: help.getRecentMeUrls
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Get recent t.me URLs
2017-10-14 11:50:46 +02:00
### Parameters:
2018-03-23 16:23:49 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2018-03-27 14:41:50 +02:00
|referer|[string](../types/string.md) | Yes|Referrer|
2017-10-14 11:50:46 +02:00
### Return type: [help\_RecentMeUrls](../types/help_RecentMeUrls.md)
### Can bots use this method: **YES**
2018-03-20 19:57:36 +01:00
### MadelineProto Example:
2017-10-14 11:50:46 +02:00
```
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
2017-10-14 11:50:46 +02:00
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
2017-10-14 11:50:46 +02:00
$help_RecentMeUrls = $MadelineProto->help->getRecentMeUrls(['referer' => 'string', ]);
```
2018-03-20 19:57:36 +01:00
### [PWRTelegram HTTP API](https://pwrtelegram.xyz) example (NOT FOR MadelineProto):
2017-10-14 11:50:46 +02:00
### As a bot:
POST/GET to `https://api.pwrtelegram.xyz/botTOKEN/madeline`
Parameters:
* method - help.getRecentMeUrls
* params - `{"referer": "string", }`
### As a user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/help.getRecentMeUrls`
Parameters:
referer - Json encoded string
Or, if you're into Lua:
```
help_RecentMeUrls = help.getRecentMeUrls({referer='string', })
```