如何使用带有php的bot在电报中的消息下方添加按钮,以便如果有人单击该按钮,它将向该聊天ID发送一些文本 See the image for more clarification
我能够发送reply_markup键盘,但不能发送附件按钮,如图所示。根据图片,如果有人单击“显示正确答案”按钮,则会向该聊天发送正确答案。
$replyMarkup = array(
'keyboard' => array(
array("A", "B")
)
);
$encodedMarkup = json_encode($replyMarkup);
file_get_contents($website."/sendmessage?chat_id=".$chatId."&text=".$msg."&parse_mode=Markdown"."&reply_markup=".$encodedMarkup);