Telegram Bot - 无法使用 PHP 删除自定义键盘

Telegram Bot - Cannot remove custom keyboard using PHP

请帮帮我。我通过 reply_markup 添加了自定义键盘,如下所示:

        $reply_markup = array(
            'keyboard' => array(
                array(
                    array( 
                        'text' => 'Click here to upload contact & validate it',
                        'request_contact' => true
                    )
                )
            ),
            'one_time_keyboard' => true,
            'resize_keyboard' => true
        );

        $reply_markup = json_encode($reply_markup);

        API_URL."sendmessage?chat_id=".$chatID."&text=".urlencode($reply)."&reply_markup=".urlencode($reply_markup);

它工作正常。但现在我需要删除自定义键盘。我这样试过:

        $reply_markup = array(
            'remove_keyboard' => true
        );

        API_URL."sendmessage?chat_id=".$chatID."&text=".urlencode($reply)."&reply_markup=".urlencode($reply_markup);

它不起作用。自定义键盘仅隐藏,未移除。顺便说一句,我正在使用 PHP 7.

请帮忙。提前谢谢你

所以今天我发现,我的实际代码少了一行代码。可以在下面看到,粗体部分。

        $reply_markup = array(
            'remove_keyboard' => true
        );

$reply_markup = json_encode($reply_markup);

        API_URL."sendmessage?chat_id=".$chatID."&text=".urlencode($reply)."&reply_markup=".urlencode($reply_markup);