Method: auth.requestFirebaseSms
Request an SMS code via Firebase.
Parameters:
| Name | Type | Description | Required |
|---|---|---|---|
| phone_number | string | Phone number | Optional |
| phone_code_hash | string | Phone code hash returned by auth.sendCode | Optional |
| safety_net_token | string | On Android, a JWS object obtained as described in the auth documentation » | Optional |
| play_integrity_token | string | On Android, an object obtained as described in the auth documentation » | Optional |
| ios_push_secret | string | Secret token received via an apple push notification | Optional |
Return type: Bool
Can users use this method: YES
Can bots use this method: NO
Can bots use this method over a business connection with the businessConnectionId flag: NO
MadelineProto Example (now async for huge speed and parallelism!):
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$Bool = $MadelineProto->auth->requestFirebaseSms(phone_number: 'string', phone_code_hash: 'string', safety_net_token: 'string', play_integrity_token: 'string', ios_push_secret: 'string', );