2.6 KiB
2.6 KiB
title | description | image | redirect_from |
---|---|---|---|
auth.bindTempAuthKey | You cannot use this method directly, instead modify the PFS and default_temp_auth_key_expires_in settings, see https://docs.madelineproto.xyz/docs/SETTINGS.html for more info | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/auth_bindTempAuthKey.html |
Method: auth.bindTempAuthKey
You cannot use this method directly, instead modify the PFS and default_temp_auth_key_expires_in settings, see https://docs.madelineproto.xyz/docs/SETTINGS.html for more info
Parameters:
Name | Type | Description | Required |
---|---|---|---|
perm_auth_key_id | long | You cannot use this method directly, instead modify the PFS and default_temp_auth_key_expires_in settings, see https://docs.madelineproto.xyz/docs/SETTINGS.html for more info | Yes |
nonce | long | You cannot use this method directly, instead modify the PFS and default_temp_auth_key_expires_in settings, see https://docs.madelineproto.xyz/docs/SETTINGS.html for more info | Yes |
expires_at | int | You cannot use this method directly, instead modify the PFS and default_temp_auth_key_expires_in settings, see https://docs.madelineproto.xyz/docs/SETTINGS.html for more info | Yes |
encrypted_message | bytes | You cannot use this method directly, instead modify the PFS and default_temp_auth_key_expires_in settings, see https://docs.madelineproto.xyz/docs/SETTINGS.html for more info | Yes |
Return type: Bool
Can bots use this method: YES
MadelineProto Example (now async for huge speed and parallelism!):
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$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', })
Errors
Code | Type | Description |
---|---|---|
400 | ENCRYPTED_MESSAGE_INVALID | Encrypted message invalid |
400 | INPUT_REQUEST_TOO_LONG | The request is too big |
400 | TEMP_AUTH_KEY_EMPTY | No temporary auth key provided |
-503 | Timeout | Timeout while fetching data |