MadelineProto/docs/API_docs/methods/get_future_salts.md

910 B

title description
get_future_salts get_future_salts parameters, return type and example

Method: get_future_salts

Back to methods index

Parameters:

Name Type Required
num int Yes

Return type: FutureSalts

Example:

$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) {
    $this->bot_login($token);
}
if (isset($number)) {
    $sentCode = $MadelineProto->phone_login($number);
    echo 'Enter the code you received: ';
    $code = '';
    for ($x = 0; $x < $sentCode['type']['length']; $x++) {
        $code .= fgetc(STDIN);
    }
    $MadelineProto->complete_phone_login($code);
}

$FutureSalts = $MadelineProto->get_future_salts(['num' => int, ]);

Or, if you're into Lua:

FutureSalts = get_future_salts({num=int, })