1.2 KiB
1.2 KiB
title | description |
---|---|
auth.bindTempAuthKey | auth.bindTempAuthKey parameters, return type and example |
Method: auth.bindTempAuthKey
Parameters:
Name | Type | Required |
---|---|---|
perm_auth_key_id | long | Yes |
nonce | long | Yes |
expires_at | int | Yes |
encrypted_message | bytes | Yes |
Return type: Bool
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);
}
$Bool = $MadelineProto->auth->bindTempAuthKey(['perm_auth_key_id' => long, 'nonce' => long, 'expires_at' => int, 'encrypted_message' => bytes, ]);
Or, if you're into Lua:
Bool = auth.bindTempAuthKey({perm_auth_key_id=long, nonce=long, expires_at=int, encrypted_message=bytes, })