Telegram bot:如何使用内联键盘发送消息并同时隐藏自定义键盘?

时间:2016-06-16 11:19:27

标签: telegram-bot

  • 第1步:向用户发送包含少量按钮的ReplyKeyboardMarkup消息(例如 ["Yes", "No"]
  • 步骤2:如果用户单击其中一个按钮(例如Yes"),我想显示带内联键盘的消息并隐藏在步骤1发送的按钮。

有可能吗?该邮件只有一个reply_markup属性,可以是InlinkeKeyboardMarkupReplyKeyboardHide。我看到的唯一方法是发送2条消息(首先隐藏键盘,第二条用内联键盘),但从用户体验的角度来看,这不是最好的解决方案。我可以做几个请求,但希望用户只能看到一条消息。

有什么想法吗?

6 个答案:

答案 0 :(得分:8)

现在不可能。 Telegram Bot API目前只允许发送一种类型的键盘:内联或简单(包括KeyboardHide和其他)。

答案 1 :(得分:4)

我想你希望按钮在按下后消失:

ReplyKeyboardMarkup MyButton = new ReplyKeyboardMarkup();
MyButton.OneTimeKeyboard = true;

您甚至可以通过添加以下内容来提高响应速度:

MyButton.ResizeKeyboard = true;

答案 2 :(得分:3)

但是你可以发送两条消息,第一条消息将发送ReplyKeyboardHide / ReplyKeyboardRemove,第二条消息将发送内联键盘

答案 3 :(得分:3)

没有任何合理的解决方案。但是有一个技巧。您可以发送消息以删除以前的键盘,然后删除此消息,最后使用键盘发送下一条消息。

// send a fake message
Message sentMsg = bot.SendTextMessageAsync(chatID, ".", replyKeyboardMarkup: new ReplyKeyboardRemove()).Result;

// remove the fake message
bot.DeleteMessageAsync(chatID, sentMsg.MessageId);

// send the main message with it's keyboard
bot.SendTextMessageAsync(chatID, "the next message", replyKeyboardMarkup: new ReplyKeyboardMarkup(keyboardData));

答案 4 :(得分:2)

只需将OneTimeKeyboard属性设置为true,

Button.OneTimeKeyboard = true;

一旦使用按钮,它就再也不会显示了

答案 5 :(得分:1)

你最好使用inlinekeyboard同时使用yes / no和你想要在按yes或no之后显示的键盘。这样,您可以编辑是/否内联键盘消息并显示新键盘。

您可以发送inlineKeyboard并通过检查它的callBackQuery.Data参数,您可以再次编辑已发送的消息并显示您的新消息。

下面的

是一个示例更新消息json:

  {"update_id":14603298,
  "callback_query": 
  {
    "id": "479899181065761766",
    "from": {
      "id": 111735238,
      "first_name": "eric",
      "username": "...."
    },
    "message": {
      "message_id": 22,
      "from": {
        "id": 3576731383,
        "first_name": "the_bot_name",
        "username": "mybot_bot"
      },
      "chat": {
        "id": 111745258,
        "first_name": "eric",
        "username": "....",
        "type": "private"
      },
      "date": 1492113810,
      "text": "sent message"
    },
    "chat_instance": "5419183837652256438",
    "data": "yes"
  }}

因此,当用户点击是或否时,您将收到更新消息。根据上面的更新消息,chatid和messageid是已知的,因此使用c#Telegram.Bot库编辑代码就像:

    var chatid= 111745258;
    var messageid=22;        
    TelegramBotClient api = new TelegramBotClient("YOUR_TOKEN");

var new_keyboard = new InlineKeyboardMarkup(
                new[]
                     {
                      new[]
                         {
                          new InlineKeyboardButton("step_1","step1") ,
                          },
                      new[]
                          {
                          new InlineKeyboardButton("step_2","step2"),
                          new InlineKeyboardButton("step_3","step3"),
                           },
                      new[]
                           {
                          new InlineKeyboardButton("step_4","step4"),
                           }
                  });
    api.EditMessageReplyMarkupAsync(chatid, messageid, replyMarkup: new_keyboard);