HTTP 403 · Forbidden
HTTP 403 Channels & Chats

When & why it happens

The requested chat update would not change anything (e.g. setting the same title or photo) — server refuses.

Handling in gogram

Surfaced as *gogram.ErrResponseCode. Match on the message:

if err, ok := err.(*gogram.ErrResponseCode); ok { if err.Message == "CHAT_NOT_MODIFIED" { // handle this error } }