MadelineProto/old_docs/API_docs_v71/methods/channels_exportMessageLink.md

69 lines
1.5 KiB
Markdown
Raw Normal View History

2017-10-14 11:50:46 +02:00
---
title: channels.exportMessageLink
2018-03-23 16:23:49 +01:00
description: Get the link of a message in a channel
2017-10-14 11:50:46 +02:00
---
## Method: channels.exportMessageLink
[Back to methods index](index.md)
2018-03-23 16:23:49 +01:00
Get the link of a message in a channel
2017-10-14 11:50:46 +02:00
### Parameters:
2018-03-23 16:23:49 +01:00
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|channel|[Username, chat ID, Update, Message or InputChannel](../types/InputChannel.md) | Optional|The channel/supergroup|
|id|[CLICK ME int](../types/int.md) | Yes|The ID of the message|
2017-10-14 11:50:46 +02:00
### Return type: [ExportedMessageLink](../types/ExportedMessageLink.md)
### Can bots use this method: **NO**
2017-11-03 17:39:50 +01:00
### Errors this method can return:
| Error | Description |
|----------|---------------|
|CHANNEL_INVALID|The provided channel is invalid|
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
$ExportedMessageLink = $MadelineProto->channels->exportMessageLink(['channel' => InputChannel, 'id' => int, ]);
```
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 user:
POST/GET to `https://api.pwrtelegram.xyz/userTOKEN/channels.exportMessageLink`
Parameters:
channel - Json encoded InputChannel
id - Json encoded int
Or, if you're into Lua:
```
ExportedMessageLink = channels.exportMessageLink({channel=InputChannel, id=int, })
```