作者热门文章
- 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/
如何在这个结果中获取ChosenInlineResult? :我使用的是 PHP,这是我的发送结果页面 $results = array( array(
如何在这个结果中获取ChosenInlineResult? :我使用的是 PHP,这是我的发送结果页面 $results = array( array(
我是一名优秀的程序员,十分优秀!