mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-22 09:26:37 +03:00
36 lines
3.6 KiB
HTML
36 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>SendChangePhoneCodeRequest</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">Account</a></li><img src="../../img/arrow.svg" alt="/" /><li><a href="send_change_phone_code.html">SendChangePhoneCodeRequest</a></li></ul><h1>SendChangePhoneCodeRequest</h1><p><strong>Only users</strong> can use this request. <a href="#examples">See code examples.</a></p><pre>---functions---
|
|
account.sendChangePhoneCode#82574ae5 phone_number:<a href="../../index.html#string">string</a> settings:<a href="../../types/code_settings.html">CodeSettings</a> = <a href="../../types/auth/sent_code.html">auth.SentCode</a></pre><button onclick="cp('from telethon.tl.functions.account import SendChangePhoneCodeRequest');">Copy import to the clipboard</button><h3>Returns</h3><table><tr><td><a href="../../types/auth/sent_code.html">auth.SentCode</a></td></tr></table><p>This type can be an instance of either:</p><table><tr><td><a href="../../constructors/auth/sent_code.html">SentCode</a></td><td><a href="../../constructors/auth/sent_code_success.html">SentCodeSuccess</a></td></tr></table><h3>Parameters</h3><table><tr><td><b>phone_number</b></td><td style="text-align:center"><a href="../../index.html#string">string</a></td><td></td></tr><tr><td><b>settings</b></td><td style="text-align:center"><a href="../../types/code_settings.html">CodeSettings</a></td><td></td></tr></table><h1>Known RPC errors</h1><p>This request can cause 2 known errors:</p><table><tr><td><code>FreshChangePhoneForbiddenError</code></td><td>Recently logged-in users cannot use this request.</td></tr><tr><td><code>PhoneNumberInvalidError</code></td><td>The phone number is invalid.</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.account.SendChangePhoneCodeRequest(
|
|
phone_number=<em>'some string here'</em>,
|
|
settings=types.CodeSettings(
|
|
allow_flashcall=<strong>True</strong>,
|
|
current_number=<strong>True</strong>,
|
|
allow_app_hash=<strong>True</strong>,
|
|
allow_missed_call=<strong>True</strong>,
|
|
allow_firebase=<strong>True</strong>,
|
|
unknown_number=<strong>True</strong>,
|
|
logout_tokens=[<em>b'arbitrary\x7f data \xfa here'</em>],
|
|
token=<em>'some string here'</em>,
|
|
app_sandbox=<strong>False</strong>
|
|
)
|
|
))
|
|
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> |