Layer 227
MessagesSetBotCallbackAnswer
Set the callback answer to a user button press (bots only)
method
Bots
messages.setBotCallbackAnswer#d58f130a flags:# alert:flags.1?true query_id:long message:flags.0?string url:flags.2?string cache_time:int = Bool;
Parameters
| Name | Type | Description |
|---|---|---|
| Alert | flags .1? true | Whether to show the message as a popup instead of a toast notification |
| QueryId | long | Query ID |
| Message | flags .0? string | Popup to show |
| Url | flags .2? string | URL to open |
| CacheTime | int | Cache validity |
Returns
BoolGogram Example
// MessagesSetBotCallbackAnswer - positional arguments result, err := client.MessagesSetBotCallbackAnswer(nil, int64(1234567890), "Hello, World!", "Hello, World!", 42) if err != nil { // handle error } // result is *tg.Bool
Possible Errors
| Code | Type | Description |
|---|---|---|
| 400 | MESSAGE_TOO_LONG | The provided message is too long. |
| 400 | QUERY_ID_INVALID | The query ID is invalid. |
| 400 | URL_INVALID | Invalid URL provided. |
| 400 | USER_BOT_REQUIRED | This method can only be called by a bot. |