MadelineProto/docs/API_docs/methods/req_pq.md

853 B

title description
req_pq req_pq parameters, return type and example

Method: req_pq

Back to methods index

Parameters:

Name Type Required
nonce int128 Yes

Return type: ResPQ

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);
}

$ResPQ = $MadelineProto->req_pq(['nonce' => int128, ]);

Or, if you're into Lua:

ResPQ = req_pq({nonce=int128, })