--- title: channels.exportMessageLink description: Get the link of a message in a channel image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Method: channels.exportMessageLink [Back to methods index](index.md) Get the link of a message in a channel ### Parameters: | Name | Type | Description | Required | |----------|---------------|-------------|----------| |channel|[Username, chat ID, Update, Message or InputChannel](../types/InputChannel.md) | The channel/supergroup | Optional| |id|[int](../types/int.md) | The ID of the message | Yes| |grouped|[Bool](../types/Bool.md) | Is this an album? | Yes| ### Return type: [ExportedMessageLink](../types/ExportedMessageLink.md) ### Can bots use this method: **NO** ### MadelineProto Example ([now async for huge speed and parallelism!](https://docs.madelineproto.xyz/docs/ASYNC.html)): ```php 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: ```lua ExportedMessageLink = channels.exportMessageLink({channel=InputChannel, id=int, grouped=Bool, }) ``` ### Errors this method can return: | Error | Description | |----------|---------------| |CHANNEL_INVALID|The provided channel is invalid|