telegram-bot-api icon indicating copy to clipboard operation
telegram-bot-api copied to clipboard

Golang bindings for the Telegram Bot API

Results 142 telegram-bot-api issues
Sort by recently updated
recently updated
newest added

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?

![image](https://github.com/go-telegram-bot-api/telegram-bot-api/assets/89061583/111fea6f-14b5-4a02-afc8-d7ada4beec4e) ![image](https://github.com/go-telegram-bot-api/telegram-bot-api/assets/89061583/6cbe4fea-cf24-46b2-b3a6-0231880a62f0) When sending media, photos are repeated and gives an error in the code ![image](https://github.com/go-telegram-bot-api/telegram-bot-api/assets/89061583/74038b52-99d2-43e0-8f92-5c911522f7c1) 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...