Telegram bot api 模拟用户交互

Csa*_*hez 5 telegram telegram-bot

我正在使用 telegram bot api,我想在确定的时间内向用户发送消息,但机器人需要接收一条“消息”才能发送某些内容,我的问题是: 是否可以发送模拟用户交互的更新?

我的意思是这样的: 这里我创建更新来模拟用户交互(sendUpdate)是一个自定义方法,只是举例来说,这实际上不起作用

public void sendUpdate() {
    //sending the update to simulate user interaction
    Update upd = new Update();

    //method that telegram bot api uses to reply when you send a message to the bot
    onUpdateReceived(upd);
}

@Override
//Here I want to recipt my update to simulate the user interaction, and send a message witout user input
public void onUpdateReceived(Update update) {
    System.out.println(update);
    LOGGER.setLevel(Level.ALL);
    LOGGER.addHandler(new ConsoleHandler());

    LOGGER.info("2");
    if (update.hasMessage() && update.getMessage().hasText()) {
        // Set variables
        String message_text = "Message";
        long chat_id = update.getMessage().getChatId();
        SendMessage message = new SendMessage() 
                .setChatId(chat_id)
                .setText(message_text);
        try {
            this.sendMessage(message); 
        } catch (TelegramApiException e) {
            e.printStackTrace();
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

Pet*_*dam 4

如果您想测试您的 API Webhook 并模拟用户交互,我更喜欢模拟对您的 Webhook URI 的整个 POST 请求(该 URI,您的 Telegram Bot 正在侦听并从 Telegram 接收更新)。

您可以使用任何您想要的工具,例如我使用的Fiddler(选项卡 Composer)。在你的体内,你将放入 JSON(它将转换为你的Update对象)

方法类型:POST

领域:https://whereyourwebhookislistening.com

标题:content-type: application/json

请求Body例如:

{
   "update_id":123456789,
   "message":{
      "message_id":123,
      "from":{
         "id":123456789,
         "is_bot":false,
         "first_name":"Test",
         "language_code":"ru-RU"
      },
      "date":1517384207,
      "chat":{
         "id":123456789,
         "type":"private",
         "first_name":"Testr",
         "all_members_are_administrators":false,
      },
      "forward_from_message_id":0,
      "text":"Test text",
      "delete_chat_photo":false,
      "group_chat_created":false,
      "supergroup_chat_created":false,
      "channel_chat_created":false,
      "migrate_to_chat_id":0,
      "migrate_from_chat_id":0,
   },
}
Run Code Online (Sandbox Code Playgroud)

通过这种方法,您可以模拟来自 Telegram Bot 的真实 Webhook 调用。添加示例请求的屏幕截图:

Fiddler 向 webhook 编写 POST 请求