如何删除或编辑键盘按钮?
首先我创建了keboard:
<?
$keyboard = [
'keyboard' => [[['text' => 'a',]],[['text'=>'b' ]]],
];
$reply = json_encode($keyboard);
$url1 = "https://api.telegram.org/bot".$token."/sendmessage?parse_mode=HTML&chat_id=".$chat_id."&text=".urlencode($text)."&reply_markup=".$reply;
$result1=file_get_contents($url1);
?>
&#13;
真实地创建了键盘。
但是当我尝试使用api bot删除不工作时:
<?
$url1 = "https://api.telegram.org/bot".$token."/sendmessage?parse_mode=HTML&chat_id=".$chat_id."&reply_markup=KeyboardRemove";
$result1=file_get_contents($url1);
?>
&#13;
我哪里错了?
感谢