mirror of
https://github.com/usememos/memos.git
synced 2024-11-16 11:46:07 +08:00
4d59689126
* Add telegram.Bot in MessageHandler * Change single message handler like group messages * Move message notify wrapper from plugin to server * Add keyboard buttons on Telegram reply message * Add support to telegram CallbackQuery update * Set visibility in callbackQuery * Change original reply message after callbackQuery --------- Co-authored-by: Athurg Feng <athurg@gooth.org>
21 lines
422 B
Go
21 lines
422 B
Go
package telegram
|
|
|
|
import (
|
|
"context"
|
|
"net/url"
|
|
)
|
|
|
|
// AnswerCallbackQuery make an answerCallbackQuery api request.
|
|
func (b *Bot) AnswerCallbackQuery(ctx context.Context, callbackQueryID, text string) error {
|
|
formData := url.Values{
|
|
"callback_query_id": {callbackQueryID},
|
|
"text": {text},
|
|
}
|
|
|
|
err := b.postForm(ctx, "/answerCallbackQuery", formData, nil)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|