gpt4 book ai didi

JAVA Telegram bots api 获取更新时出错 : Conflict: terminated by other long poll or webhook

转载 作者:行者123 更新时间:2023-11-30 06:27:18 25 4
gpt4 key购买 nike

我正在使用 JAVA Telegram Bot API 和 Spring 框架,我的 HomeController 中有一个方法,并且有一个类可以处理来自用户的所有传入消息。我在 spring 日志中收到这些错误,然后我收到来自 telegram bot API 的重复响应。问题是什么?

  @PostConstruct
public void initBots() {
ApiContextInitializer.init();
TelegramBotsApi botsApi = new TelegramBotsApi();
BotService botService = new BotService();
try {
botsApi.registerBot(botService);
} catch (TelegramApiException e) {
e.printStackTrace();
}
}

[abrsystem1_bot Telegram Connection] org.telegram.telegrambots.logging.BotLogger.severe BOTSESSION org.telegram.telegrambots.exceptions.TelegramApiRequestException: Error getting updates: [409] Conflict: terminated by other long poll or webhook at org.telegram.telegrambots.api.methods.updates.GetUpdates.deserializeResponse(GetUpdates.java:119) at org.telegram.telegrambots.updatesreceivers.DefaultBotSession$ReaderThread.getUpdatesFromServer(DefaultBotSession.java:255) at org.telegram.telegrambots.updatesreceivers.DefaultBotSession$ReaderThread.run(DefaultBotSession.java:186)

@Override
public void onUpdateReceived(Update update) {
try {

if (update.hasMessage() && update.getMessage().hasText()) {

String message_text = update.getMessage().getText();
String wellcome_text = "برای ثبت نام در سایت شماره تلفن همراه خود را به اشتراک بگذارید";

long chat_id = update.getMessage().getChatId();
if (message_text.equals("/start")) {

try {
SendMessage message = new SendMessage()
.setChatId(chat_id)
.setText(wellcome_text);

ReplyKeyboardMarkup keyboardMarkup = new ReplyKeyboardMarkup();
List<KeyboardRow> keyboard = new ArrayList<KeyboardRow>();
KeyboardRow row = new KeyboardRow();
row.add((new KeyboardButton().setText("اشتراک شماره موبایل").setRequestContact(true)));
keyboard.add(row);
keyboardMarkup.setKeyboard(keyboard);
message.setReplyMarkup(keyboardMarkup);

try {
execute(message);
} catch (TelegramApiException e) {
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}

} else if (message_text.equals("تایید مشخصات کاربری")) {
SendMessage sendMessage = new SendMessage();
sendMessage.setChatId(chat_id).setText("اطلاعات مورد تایید قرار گرفت");

try {
execute(sendMessage);
removeMarker(chat_id);
showContactInfo(chat_id, update);
} catch (Exception ex) {
ex.printStackTrace();
}
} else if (message_text.equals("تغییر مشخصات")) {

} else {
showUnknownCommand(chat_id);
}
} else if (update.getMessage().getContact() != null && update.getMessage().getChat() != null) {

long chat_id = update.getMessage().getChatId();
showContactInfo(chat_id, update);
}
} catch (Exception e) {
e.printStackTrace();
}
}

最佳答案

一天后我终于解决了我的问题!当我在计算机上使用intellij idea调试我的项目时,我创建了许多调试实例,所以我从电报机器人中的同一个聊天ID中得到了多个响应。所以无聊的问题...... .

关于JAVA Telegram bots api 获取更新时出错 : Conflict: terminated by other long poll or webhook,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46907016/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com