2.0 KiB
2.0 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 using the PWRTelegram HTTP API:
As a bot:
POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline
Parameters:
- method - getCallbackQueryAnswer
- params -
{"chat_id": InputPeer, "message_id": long, "payload": CallbackQueryPayload, }
As a user:
POST/GET to https://api.pwrtelegram.xyz/userTOKEN/getCallbackQueryAnswer
Parameters:
chat_id - Json encoded InputPeer
message_id - Json encoded long
payload - Json encoded CallbackQueryPayload
Or, if you're into Lua:
CallbackQueryAnswer = getCallbackQueryAnswer({chat_id=InputPeer, message_id=long, payload=CallbackQueryPayload, })