tucnak / telebot

Telebot is a Telegram bot framework in Go.
MIT License
4.04k stars 469 forks source link

Dialog Support [New Feature] #608

Closed TangMonk closed 1 year ago

TangMonk commented 1 year ago

I found there is bot can send dialog to me:

image

When click inline keyboard, it send me a dialog, is it new in telegram api? Dose telebot support this?

roreng commented 1 year ago

I found there is bot can send dialog to me:

image

When click inline keyboard, it send me a dialog, is it new in telegram api? Dose telebot support this?

This is Alert. Only for Callbacks. Example.

// ShowAlert sends a text response for the current callback query.
func (b *Bot) ShowAlert(c tele.Context, text string) error {
    resp := &tele.CallbackResponse{
        Text:      text,
        ShowAlert: true,
    }

    return c.Respond(resp)
}
TangMonk commented 1 year ago

thanks, it is awesome