我正在尝试使用自定义键盘在PHP中创建Telegram Bot。消息已发送,但是自定义键盘无法使用。 $ keyb = array('keyboard'=> array(array(“A”,“B”))));也没有成功。
sendMessage方法引用该对象的ReplyKeyboardMarkup。为ReplyKeyboardMarkup创建数组不起作用。还尝试了json_encode($ keyb),但这也不是解决方案。
我在GitHub上搜索了示例,但没有找到使用自定义键盘的示例。 Telegram可在iPhone和台式机上运行,​​都是最新的。
样例代码:

$url = "https://api.telegram.org/bot<token>/sendMessage";

$keyb = array('ReplyKeyboardMarkup' => array('keyboard' => array(array("A", "B"))));
$content = array('chat_id' => <chat_id>, 'reply_markup' => $keyb, 'text' => "Test");

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($content));
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);  //fix http://unitstep.net/blog/2009/05/05/using-curl-in-php-to-access-https-ssltls-protected-sites/

// receive server response ...
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$server_output = curl_exec ($ch);
curl_close ($ch);
var_dump($server_output);

最佳答案

该文档似乎表明您需要提供Reply_markup参数作为JSON序列化对象...对于表单POST端点有点愚蠢:

$replyMarkup = array(
    'keyboard' => array(
        array("A", "B")
    )
);
$encodedMarkup = json_encode($replyMarkup);
$content = array(
    'chat_id' => <chat_id>,
    'reply_markup' => $encodedMarkup,
    'text' => "Test"
);

这个有效吗?

10-08 20:08