mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-13 04:56:35 +03:00
Mention that codes can expire immediately
This commit is contained in:
parent
021cb21686
commit
c6d821910e
|
@ -60,6 +60,14 @@ If you're not authorized, you need to ``.sign_in()``:
|
||||||
# If .sign_in raises SessionPasswordNeeded error, call .sign_in(password=...)
|
# If .sign_in raises SessionPasswordNeeded error, call .sign_in(password=...)
|
||||||
# You can import both exceptions from telethon.errors.
|
# You can import both exceptions from telethon.errors.
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
|
||||||
|
If you send the code that Telegram sent you over the app through the
|
||||||
|
app itself, it will expire immediately. You can still send the code
|
||||||
|
through the app by "obfuscating" it (maybe add a magic constant, like
|
||||||
|
``12345``, and then subtract it to get the real code back) or any other
|
||||||
|
technique.
|
||||||
|
|
||||||
``myself`` is your Telegram user. You can view all the information about
|
``myself`` is your Telegram user. You can view all the information about
|
||||||
yourself by doing ``print(myself.stringify())``. You're now ready to use
|
yourself by doing ``print(myself.stringify())``. You're now ready to use
|
||||||
the client as you wish! Remember that any object returned by the API has
|
the client as you wish! Remember that any object returned by the API has
|
||||||
|
|
|
@ -373,7 +373,10 @@ class TelegramClient(TelegramBareClient):
|
||||||
these requests.
|
these requests.
|
||||||
|
|
||||||
code (:obj:`str` | :obj:`int`):
|
code (:obj:`str` | :obj:`int`):
|
||||||
The code that Telegram sent.
|
The code that Telegram sent. Note that if you have sent this
|
||||||
|
code through the application itself it will immediately
|
||||||
|
expire. If you want to send the code, obfuscate it somehow.
|
||||||
|
If you're not doing any of this you can ignore this note.
|
||||||
|
|
||||||
password (:obj:`str`):
|
password (:obj:`str`):
|
||||||
2FA password, should be used if a previous call raised
|
2FA password, should be used if a previous call raised
|
||||||
|
|
Loading…
Reference in New Issue
Block a user