1.5 KiB
1.5 KiB
title | description |
---|---|
getCallbackQueryAnswer | Sends callback query to a bot and returns answer to it. Unavailable for bots |
Method: getCallbackQueryAnswer
YOU CANNOT USE THIS METHOD IN MADELINEPROTO
Sends callback query to a bot and returns answer to it. Unavailable for bots
Params:
Name | Type | Required | Description |
---|---|---|---|
chat_id | InputPeer | Yes | Identifier of the chat with a message |
message_id | long | Yes | Identifier of the message, from which the query is originated |
payload | CallbackQueryPayload | Yes | Query payload |
Return type: CallbackQueryAnswer
Example:
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) { // Login as a bot
$MadelineProto->bot_login($token);
}
if (isset($number)) { // Login as a user
$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);
}
$CallbackQueryAnswer = $MadelineProto->getCallbackQueryAnswer(['chat_id' => InputPeer, 'message_id' => long, 'payload' => CallbackQueryPayload, ]);
Or, if you're into Lua:
CallbackQueryAnswer = getCallbackQueryAnswer({chat_id=InputPeer, message_id=long, payload=CallbackQueryPayload, })