1.5 KiB
1.5 KiB
title | description | image |
---|---|---|
channels.exportMessageLink | Get the link of a message in a channel | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Method: channels.exportMessageLink
Get the link of a message in a channel
Parameters:
Name | Type | Description | Required |
---|---|---|---|
channel | Username, chat ID, Update, Message or InputChannel | The channel/supergroup | Optional |
id | int | The ID of the message | Yes |
grouped | Bool | Is this an album? | Yes |
Return type: ExportedMessageLink
Can bots use this method: NO
MadelineProto Example (now async for huge speed and parallelism!):
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();
$ExportedMessageLink = $MadelineProto->channels->exportMessageLink(['channel' => InputChannel, 'id' => int, 'grouped' => Bool, ]);
Or, if you're into Lua:
ExportedMessageLink = channels.exportMessageLink({channel=InputChannel, id=int, grouped=Bool, })
Errors this method can return:
Error | Description |
---|---|
CHANNEL_INVALID | The provided channel is invalid |