HTTP 400 · Bad Request
TOPIC_ID_INVALID
The specified topic ID is invalid.
HTTP 400
Topics
When & why it happens
The supplied topic id is malformed, points to nothing the server recognises, or fails a server-side validity check.
Handling in gogram
Surfaced as *gogram.ErrResponseCode. Match on the message:
if err, ok := err.(*gogram.ErrResponseCode); ok {
if err.Message == "TOPIC_ID_INVALID" {
// handle this error
}
}
Related errors
TOPIC_CLOSEDThis topic was closed, you can't send messages to it anymore.TOPIC_CLOSE_SEPARATELYThe close flag cannot be provided together with any of the other flags.TOPIC_DELETEDThe specified topic was deleted.TOPIC_HIDE_SEPARATELYThe hide flag cannot be provided together with any of the other flags.TOPIC_NOT_MODIFIEDThe updated topic info is equal to the current topic info, nothing was changed.TOPIC_TITLE_EMPTYThe specified topic title is empty.