HTTP 403 · Forbidden
HTTP 403 Channels & Chats

When & why it happens

The channel is private and the current user is not a member, or it has been banned/kicked.

Handling in gogram

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

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