MadelineProto/docs/API_docs/methods/phone_requestCall.md

1.2 KiB

title description
phone.requestCall phone.requestCall parameters, return type and example

Method: phone.requestCall

Back to methods index

Parameters:

Name Type Required
user_id InputUser Yes
g_a_hash bytes Yes
protocol PhoneCallProtocol Yes

Return type: phone_PhoneCall

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

$phone_PhoneCall = $MadelineProto->phone->requestCall(['user_id' => InputUser, 'g_a_hash' => bytes, 'protocol' => PhoneCallProtocol, ]);

Or, if you're into Lua:

phone_PhoneCall = phone.requestCall({user_id=InputUser, g_a_hash=bytes, protocol=PhoneCallProtocol, })