You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After 45 minutes of dealing with same issue I found a solution. This is not specified in TG or gotgbotapi's documentation, but I think you must explicitly specify that you want to receive inline keyboard updates.
u:=tgbotapi.NewUpdate(0)
u.AllowedUpdates= []string{"callback_query", "message"} // add more updates that you want to receive
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?
The text was updated successfully, but these errors were encountered: