Layer 220
AuthReportMissingCode
Official apps only, reports that the SMS authentication code wasn't delivered.
method
Users
auth.reportMissingCode#cb9deff6 phone_number:string phone_code_hash:string mnc:string = Bool;
Parameters
| Name | Type | Description |
|---|---|---|
| PhoneNumber | string | Phone number where we were supposed to receive the code |
| PhoneCodeHash | string | The phone code hash obtained from auth. send Code |
| Mnc | string | MNC of the current network operator. |
Returns
BoolPossible Errors
| Code | Type | Description |
|---|---|---|
| 400 | PHONE_NUMBER_INVALID | The phone number is invalid. |
Gogram Example
// AuthReportMissingCode - positional arguments result, err := client.AuthReportMissingCode("...", "...", "...") if err != nil { // handle error } // result is *tg.Bool