HTTP 403 · Forbidden
HTTP 403 Authentication

When & why it happens

The supplied phone number is banned from Telegram and cannot be used to register or sign in.

Handling in gogram

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

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