Use this method to send answers to callback queries sent from
inline keyboard
The answer will be displayed to the user as a notification at
the top of the chat screen or as an alert. On success, TRUE
is returned.
answerCallbackQuery(callback_query_id, text = NULL, show_alert = FALSE,
url = NULL, cache_time = NULL)
Unique identifier for the query to be answered
(Optional). Text of the notification. If not specified, nothing will be shown to the user, 0-200 characters
(Optional). If TRUE
, an alert will be shown by the client instead
of a notification at the top of the chat screen. Defaults to FALSE
(Optional). URL that will be opened by the user's client
(Optional). The maximum amount of time in seconds that the result of the callback query may be cached client-side. Telegram apps will support caching starting in version 3.14. Defaults to 0
You can also use it's snake_case equivalent answer_callback_query
.