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

When send a chat action `typing` telegram api will only return `"true"` which cause `err: json: cannot unmarshal bool into Go value of type tgbotapi.Message` so should we add more...

v5.5.1 Update#ChannelPost field is documented as > ChannelPost new version of a message that is known to the bot and was edited That is a copy-paste from EditedMessage field. https://pkg.go.dev/github.com/go-telegram-bot-api/telegram-bot-api/v5#Update...

If I try to replicate the second example code: ``` package main import ( "log" "net/http" "github.com/go-telegram-bot-api/telegram-bot-api/v5" ) func main() { bot, err := tgbotapi.NewBotAPI("MyAwesomeBotToken") if err != nil {...

I am trying to send a 1.5GB video and receiving an error: ```sh Bad Request: file is too big ``` didn't find any way to go around it. my code:...

v5 documentation: https://pkg.go.dev/github.com/go-telegram-bot-api/telegram-bot-api/v5#BotAPI v4.6.4 documentation: https://pkg.go.dev/github.com/go-telegram-bot-api/telegram-bot-api#BotAPI.KickChatMember why remove KickChatMember function from BotAPI in v5?

```golang title := "Test invoice" description := "test description" payload := "200" currency := "USD" provider_token := os.Getenv("TBOTAPI_PAYMENT_TOKEN") prices := []tgbotapi.LabeledPrice{{Label: "USD", Amount: 200}} new_invoice := tgbotapi.NewInvoice(update.Message.Chat.ID, title, description, payload,...

It is very strange that these interfaces could not be implemented outside the package in the first place. Since many methods are not represented in the package (`answerCallbackQuery` for example),...

Group of more than 100000 people,Get UpdatesChan get message,lost message

I set the "chat_member" in allow_update to get ChatMemberUpdated, while the invitelink is always nil even if a new member join by the invite link created by others. Could anybody...