MadelineProtoDocs/old_docs/API_docs_v38/methods/messages_startBot.md
Sean 4baac3178e Add Syntax Highlight for Markdown
Add PHP, Lua language tag to Code area
2018-10-18 00:30:20 +08:00

1.8 KiB

title description image
messages.startBot Start a bot https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: messages.startBot

Back to methods index

Start a bot

Parameters:

Name Type Description Required
bot Username, chat ID, Update, Message or InputUser The bot's ID or username Optional
chat_id Username, chat ID, Update, Message or InputPeer Chat ID Optional
start_param string The bot's start parameter Yes

Return type: Updates

Can bots use this method: NO

MadelineProto Example:

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();

$Updates = $MadelineProto->messages->startBot(['bot' => InputUser, 'chat_id' => InputPeer, 'start_param' => 'string', ]);

PWRTelegram HTTP API example (NOT FOR MadelineProto):

As a user:

POST/GET to https://api.pwrtelegram.xyz/userTOKEN/messages.startBot

Parameters:

bot - Json encoded InputUser

chat_id - Json encoded InputPeer

start_param - Json encoded string

Or, if you're into Lua:

Updates = messages.startBot({bot=InputUser, chat_id=InputPeer, start_param='string', })

Errors this method can return:

Error Description
BOT_INVALID This is not a valid bot
PEER_ID_INVALID The provided peer id is invalid
START_PARAM_EMPTY The start parameter is empty
START_PARAM_INVALID Start parameter invalid