mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-22 09:26:37 +03:00
30 lines
4.3 KiB
HTML
30 lines
4.3 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
<title>AcceptEncryptionRequest</title>
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<link id="style" href="../../css/docs.dark.css" rel="stylesheet">
|
||
|
<script>
|
||
|
document.getElementById("style").href = "../../css/docs."
|
||
|
+ (localStorage.getItem("theme") || "light")
|
||
|
+ ".css";
|
||
|
</script>
|
||
|
<link href="https://fonts.googleapis.com/css?family=Nunito|Source+Code+Pro"
|
||
|
rel="stylesheet">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="main_div"><ul class="horizontal"><li><a href="../../index.html">API</a></li><img src="../../img/arrow.svg" alt="/" /><li><a href="../index.html">Methods</a></li><img src="../../img/arrow.svg" alt="/" /><li><a href="index.html">Messages</a></li><img src="../../img/arrow.svg" alt="/" /><li><a href="accept_encryption.html">AcceptEncryptionRequest</a></li></ul><h1>AcceptEncryptionRequest</h1><p><strong>Only users</strong> can use this request. <a href="#examples">See code examples.</a></p><pre>---functions---
|
||
|
messages.acceptEncryption#3dbc0415 peer:<a href="../../types/input_encrypted_chat.html">InputEncryptedChat</a> g_b:<a href="../../index.html#bytes">bytes</a> key_fingerprint:<a href="../../index.html#long">long</a> = <a href="../../types/encrypted_chat.html">EncryptedChat</a></pre><button onclick="cp('from telethon.tl.functions.messages import AcceptEncryptionRequest');">Copy import to the clipboard</button><h3>Returns</h3><table><tr><td><a href="../../types/encrypted_chat.html">EncryptedChat</a></td></tr></table><p>This type can be an instance of either:</p><table><tr><td><a href="../../constructors/encrypted_chat.html">EncryptedChat</a></td><td><a href="../../constructors/encrypted_chat_discarded.html">EncryptedChatDiscarded</a></td></tr><tr><td><a href="../../constructors/encrypted_chat_empty.html">EncryptedChatEmpty</a></td><td><a href="../../constructors/encrypted_chat_requested.html">EncryptedChatRequested</a></td></tr><tr><td><a href="../../constructors/encrypted_chat_waiting.html">EncryptedChatWaiting</a></td></tr></table><h3>Parameters</h3><table><tr><td><b>peer</b></td><td style="text-align:center"><a href="../../types/input_encrypted_chat.html">InputEncryptedChat</a></td><td></td></tr><tr><td><b>g_b</b></td><td style="text-align:center"><a href="../../index.html#bytes">bytes</a></td><td></td></tr><tr><td><b>key_fingerprint</b></td><td style="text-align:center"><a href="../../index.html#long">long</a></td><td></td></tr></table><h1>Known RPC errors</h1><p>This request can cause 4 known errors:</p><table><tr><td><code>ChatIdInvalidError</code></td><td>Invalid object ID for a chat. Make sure to pass the right types, for instance making sure that the request is designed for chats (not channels/megagroups) or otherwise look for a different one more suited\nAn example working with a megagroup and AddChatUserRequest, it will fail because megagroups are channels. Use InviteToChannelRequest instead.</td></tr><tr><td><code>EncryptionAlreadyAcceptedError</code></td><td>Secret chat already accepted.</td></tr><tr><td><code>EncryptionAlreadyDeclinedError</code></td><td>The secret chat was already declined.</td></tr><tr><td><code>EncryptionOccupyFailedError</code></td><td>TDLib developer claimed it is not an error while accepting secret chats and 500 is used instead of 420.</td></tr></table><p>You can import these from <code>telethon.errors</code>.</p><h1 id="examples">Example</h1><pre><strong>from</strong> telethon.sync <strong>import</strong> TelegramClient
|
||
|
<strong>from</strong> telethon <strong>import</strong> functions, types
|
||
|
|
||
|
<strong>with</strong> TelegramClient(name, api_id, api_hash) <strong>as</strong> client:
|
||
|
result = client(functions.messages.AcceptEncryptionRequest(
|
||
|
peer=types.InputEncryptedChat(
|
||
|
chat_id=478614198,
|
||
|
access_hash=-12398745604826
|
||
|
),
|
||
|
g_b=<em>b'arbitrary\x7f data \xfa here'</em>,
|
||
|
key_fingerprint=-12398745604826
|
||
|
))
|
||
|
print(result.stringify())</pre><textarea id="c" class="invisible"></textarea><script>function cp(t){var c=document.getElementById("c");c.value=t;c.select();try{document.execCommand("copy")}catch(e){}}</script></div><script>prependPath = "../../";</script><script src="../../js/search.js"></script></body></html>
|