- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在这个结果中获取ChosenInlineResult? :我使用的是 PHP,这是我的发送结果页面
$results = array(
array(
"type" => "article",
"id" => "1",
"title" => "aaaa",
"description" => "bbbb",
"input_message_content" => array(
"message_text" => "mt",
"parse_mode" => "HTML"
),"reply_markup" => array('inline_keyboard' => ($keyboardx))
)
);
$data = array(
"inline_query_id" => $qid,
"results" => json_encode($results),
"cache_time" => 0
);
$data_string = json_encode($data);
$ch = curl_init('https://api.telegram.org/'.$token.'/answerInlineQuery');
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data_string))
);
$result = curl_exec($ch);
file_put_contents("res.txt",$result,FILE_APPEND);
这里我将返回的数据保存在 res.txt 中
最佳答案
您需要前往 BotFather 并将 /setinlinefeedback
设置为 Enabled
才能接收 ChosenInlineResult
。之后,当选择 InlineQueryResult
时,您将收到一条包含 ChosenInlineResult
的消息。
{
"update_id" : 123456789,
"chosen_inline_result" : {
//[...]
}
}
关于php - TELEGRAMBOT 如何获取 ChosenInlineResult,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38482817/
您好,我想在特定时间从机器人发送消息(没有来 self 的消息),例如每周六早上 8:00。这是我的代码: import telebot import config from datetime imp
如何在这个结果中获取ChosenInlineResult? :我使用的是 PHP,这是我的发送结果页面 $results = array( array(
我制作了一个 TelegramBot 来计算我的开支,它的功能之一应该是计算特定时间段的费用并显示这些费用。我使用MySQL DB,所以我正在查询并且它可以工作,但是TelegramAPI的sendM
如何在这个结果中获取ChosenInlineResult? :我使用的是 PHP,这是我的发送结果页面 $results = array( array(
我总是无法从我的电报机器人将数据插入 Mysql 数据库,并且总是运行异常。只有tanggald总是插入失败。我认为日期插入查询的格式是错误的。如何写出正确的格式? tanggald 列详细信息:数据
我是新手,我已经在 Eclipse 中编写了 TelegramBot 的代码。它工作正常,但我想知道如何在不启动 Java 应用程序的情况下使其持续工作。我想我应该为此使用服务器。谢谢 编辑:添加 J
当请求来自用户端通过 webform 对 bot 的请求时,我希望使用 bot 电报响应任何消息,但是当 rs.message 的值为 null 时,程序错误。 错误: An exception of
有没有办法从 CallbackQuery 对象中检索聊天 ID? 就我而言,我制作了一个 InlineKeyboardButton 并设置了一个回调查询数据。我能够检索此回调查询,但没有机会检索聊天
我正在尝试在 java gradle 中为 Telegram Bot 创建一个示例项目。我在java中创建了一个新项目并添加了 Telegram 依赖项 Telegram Bot 主页“https:/
我正在使用 TelegramBot API 通过请求库向特定聊天发送消息。 http_post = requests.post(self.bot_url + self.send_msg_method,
我是一名优秀的程序员,十分优秀!