auth.sendCode
Send the verification code for login
func (c *Client) AuthSendCode(ctx context.Context, request *AuthSendCodeRequest) (AuthSentCodeClass, error)
Calling this method
client.Run(ctx, func(ctx context.Context) error {
api := client.API()
res, err := api.AuthSendCode(ctx, &tg.AuthSendCodeRequest{
// see Parameters
})
if err != nil {
return err
}
_ = res // AuthSentCodeClass
return nil
})
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
PhoneNumber | string | yes | Phone number in international format |
APIID | int | yes | Application identifier (see App configuration) |
APIHash | string | yes | Application secret hash (see App configuration) |
Settings | CodeSettings | yes | Settings for the code type to send |
Returns
Possible errors
| Code | Type | Description |
|---|---|---|
| 400 | API_ID_INVALID | API ID invalid. |
| 400 | API_ID_PUBLISHED_FLOOD | This API id was published somewhere, you can't use it now. |
| 500 | AUTH_RESTART | Restart the authorization process. |
| 400 | PHONE_NUMBER_APP_SIGNUP_FORBIDDEN | You can't sign up using this app. |
| 400 | PHONE_NUMBER_BANNED | The provided phone number is banned from telegram. |
| 400 | PHONE_NUMBER_FLOOD | You asked for the code too many times. |
| 406 | PHONE_NUMBER_INVALID | The phone number is invalid. |
| 406 | PHONE_PASSWORD_FLOOD | You have tried logging in too many times. |
| 400 | PHONE_PASSWORD_PROTECTED | This phone is password protected. |
| 400 | SMS_CODE_CREATE_FAILED | An error occurred while creating the SMS code. |
| 406 | UPDATE_APP_TO_LOGIN | Please update your client to login. |
References
- Official documentation
- Generated Go reference
- TL definition:
auth.sendCode#a677244f