MadelineProto/docs/MTProto_docs/methods/req_DH_params.md

42 lines
1.2 KiB
Markdown
Raw Normal View History

---
title: req_DH_params
description: req_DH_params parameters, return type and example
---
## Method: req\_DH\_params
[Back to methods index](index.md)
### Parameters:
| Name | Type | Required |
|----------|:-------------:|---------:|
|nonce|[int128](../types/int128.md) | Required|
|server\_nonce|[int128](../types/int128.md) | Required|
|p|[bytes](../types/bytes.md) | Required|
|q|[bytes](../types/bytes.md) | Required|
|public\_key\_fingerprint|[long](../types/long.md) | Required|
|encrypted\_data|[bytes](../types/bytes.md) | Required|
### Return type: [Server\_DH\_Params](../types/Server_DH_Params.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);
}
$Server_DH_Params = $MadelineProto->req->DH->params(['nonce' => int128, 'server_nonce' => int128, 'p' => bytes, 'q' => bytes, 'public_key_fingerprint' => long, 'encrypted_data' => bytes, ]);
```