telegram-bot-api
telegram-bot-api copied to clipboard
Golang bindings for the Telegram Bot API
Docs: https://core.telegram.org/bots/api#banchatmember > Returns True on success. ``` func (bot *BotAPI) Send(c Chattable) (Message, error) { resp, err := bot.Request(c) if err != nil { return Message{}, err } var...
Does anyone have an alternative repository to use?
  When sending media, photos are repeated and gives an error in the code  maybe I'm doing something wrong? version: github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1
At [InlineKeyboardButton](https://core.telegram.org/bots/api#inlinekeyboardbutton), has field `web_app`, but here not have.
https://go-telegram-bot-api.dev/examples/inline-keyboard from this example I expect to receive updates in updates chann when click on buttons. But nothing happens. What do I do wrong?
New field message_thread_id is added to Message type
Add minimal functional for unique identifier for the target message thread (topic) of the forum, for forum supergroups only.
I try to show an alert in my bot. when sending the request didn't receive any error, but also nothing happened in the bot. `answerCallbackQuery := tgbotapi.CallbackConfig{CallbackQueryID: upd.CallbackQuery.ID, Text: "Error...
Hello I need to pass some additional parameters in my request to server so i add an 'extraParams' arguement to Request method and fill it in some other methods like...