MadelineProtoDocs/old_docs/API_docs_v32/methods/channels.exportMessageLink.md

1.8 KiB

title description image redirect_from
channels.exportMessageLink Get link and embed info of a message in a [channel/supergroup](https://core.telegram.org/api/channel) https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/channels_exportMessageLink.html

Method: channels.exportMessageLink

Back to methods index

Get link and embed info of a message in a channel/supergroup

Parameters:

Name Type Description Required
channel Username, chat ID, Update, Message or InputChannel Channel Optional
id int Message ID Yes
grouped Bool Whether to include other grouped media (for albums) 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

Code Type Description
400 CHANNEL_INVALID The provided channel is invalid
400 CHANNEL_PRIVATE You haven't joined this channel/supergroup
400 MESSAGE_ID_INVALID The provided message id is invalid