title |
messages_sendInlineBotResult |
Method: messages_sendInlineBotResult
Back to methods index
Parameters:
Name |
Type |
Required |
silent |
Bool |
Optional |
background |
Bool |
Optional |
clear_draft |
Bool |
Optional |
peer |
InputPeer |
Required |
reply_to_msg_id |
int |
Optional |
random_id |
long |
Required |
query_id |
long |
Required |
id |
string |
Required |
Example:
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) {
$this->bot_login($token);
}
if (isset($number)) {
$sentCode = $MadelineProto->phone_login($number);
echo 'Enter the code you received: ';
$code = '';
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
$code .= fgetc(STDIN);
}
$MadelineProto->complete_phone_login($code);
}
$Updates = $MadelineProto->messages_sendInlineBotResult(['silent' => Bool, 'background' => Bool, 'clear_draft' => Bool, 'peer' => InputPeer, 'reply_to_msg_id' => int, 'random_id' => long, 'query_id' => long, 'id' => string, ]);