【发布时间】:2017-06-02 05:44:16
【问题描述】:
以下代码有效,它添加了自定义键盘键 'Button1' 和 'Button2'
$keyboard = [
'keyboard' => [['Button1'],['Button2']],
'resize_keyboard' => true,
'one_time_keyboard' => true,
'selective' => true
];
$keyboard = json_encode($keyboard, true);
$sendto = API_URL."sendmessage?chat_id=".$chatID."&text=".$reply."&parse_mode=HTML&reply_markup=$keyboard";
虽然出于我的目的,我需要使用内联键盘,但我无法让它工作
$keyboard = [
'inline_keyboard' => [['Button1' => 'test', 'callback_data' => 'test'],
];
或
$keyboard = [
'inline_keyboard' => [['Button1' => 'test'],['callback_data' => 'test']],
];
不起作用。如果有人有一个可行的示例或者可以指出我的示例中的问题,我将不胜感激。
文档链接:https://core.telegram.org/bots#inline-keyboards-and-on-the-fly-updating
【问题讨论】:
-
不清楚你在这里问什么。你的意图是什么,你做了什么,你得到了什么结果? “它不起作用”不是一个好的开始。
标签: php telegram telegram-bot php-telegram-bot