1.7 KiB
1.7 KiB
title | description |
---|---|
set_client_DH_params | set_client_DH_params parameters, return type and example |
Method: set_client_DH_params
Parameters:
Name | Type | Required |
---|---|---|
nonce | int128 | Yes |
server_nonce | int128 | Yes |
encrypted_data | bytes | Yes |
Return type: Set_client_DH_params_answer
Example:
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) { // Login as a bot
$MadelineProto->bot_login($token);
}
if (isset($number)) { // Login as a user
$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);
}
$Set_client_DH_params_answer = $MadelineProto->set_client_DH_params(['nonce' => int128, 'server_nonce' => int128, 'encrypted_data' => 'bytes', ]);
Or, if you're using the PWRTelegram HTTP API:
As a bot:
POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline
Parameters:
- method - set_client_DH_params
- params -
{"nonce": int128, "server_nonce": int128, "encrypted_data": "bytes", }
As a user:
POST/GET to https://api.pwrtelegram.xyz/userTOKEN/set_client_DH_params
Parameters:
nonce - Json encoded int128 server_nonce - Json encoded int128 encrypted_data - Json encoded bytes
Or, if you're into Lua:
Set_client_DH_params_answer = set_client_DH_params({nonce=int128, server_nonce=int128, encrypted_data='bytes', })