mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2025-01-22 05:41:46 +01:00
1.3 KiB
1.3 KiB
title | description | nav_exclude | image | redirect_from |
---|---|---|---|---|
auth.sentCode | Contains info about a sent verification code. | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/constructors/auth_sentCode.html |
Constructor: auth.sentCode
Contains info about a sent verification code.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
type | auth.SentCodeType | Yes | Phone code type |
phone_code_hash | string | Yes | Phone code hash, to be stored and later re-used with auth.signIn |
next_type | auth.CodeType | Optional | Phone code type that will be sent next, if the phone code is not received within timeout seconds: to send it use auth.resendCode |
timeout | int | Optional | Timeout for reception of the phone code |
Type: auth.SentCode
Example:
$auth_sentCode = ['_' => 'auth.sentCode', 'type' => auth.SentCodeType, 'phone_code_hash' => 'string', 'next_type' => auth.CodeType, 'timeout' => int];