auth.ReportMissingCode
- class pyrogram.raw.functions.auth.ReportMissingCode
Official apps only, reports that the SMS authentication code wasn’t delivered.
- Details:
Layer:
223ID:
CB9DEFF6
- Parameters:
phone_number (
str) – Phone number where we were supposed to receive the codephone_code_hash (
str) – The phone code hash obtained from auth.sendCodemnc (
str) – MNC of the current network operator.
- Returns:
bool
TL Schema
auth.reportMissingCode#cb9deff6
phone_number:string
phone_code_hash:string
mnc:string
= Bool
Parameter Tree
ReportMissingCode
├── phone_number →
string├── phone_code_hash →
string└── mnc →
stringExample
await app.invoke(
ReportMissingCode(
phone_number="text",
phone_code_hash="text",
mnc="text",
)
)