MadelineProto/old_docs/API_docs_v33/methods/auth_bindTempAuthKey.md

40 lines
1.1 KiB
Markdown
Raw Normal View History

---
title: auth_bindTempAuthKey
description: auth_bindTempAuthKey parameters, return type and example
---
## Method: auth\_bindTempAuthKey
[Back to methods index](index.md)
### Parameters:
| Name | Type | Required |
|----------|:-------------:|---------:|
|perm\_auth\_key\_id|[long](../types/long.md) | Required|
|nonce|[long](../types/long.md) | Required|
|expires\_at|[int](../types/int.md) | Required|
|encrypted\_message|[bytes](../types/bytes.md) | Required|
### Return type: [Bool](../types/Bool.md)
### 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, ]);
```