EditCreatorRequest
Only users can use this method. See code examples.
---functions--- channels.editCreator#8f38cd1f channel:InputChannel user_id:InputUser password:InputCheckPasswordSRP = Updates
Returns
| Updates |
This type can be an instance of either:
| UpdateShort | UpdateShortChatMessage |
| UpdateShortMessage | UpdateShortSentMessage |
| Updates | UpdatesCombined |
| UpdatesTooLong |
Parameters
| channel | InputChannel | Anything entity-like will work if the library can find its Input version (e.g., usernames, Peer, User or Channel objects, etc.). |
| user_id | InputUser | Anything entity-like will work if the library can find its Input version (e.g., usernames, Peer, User or Channel objects, etc.). |
| password | InputCheckPasswordSRP |
Known RPC errors
This request can cause 4 known errors:
PasswordMissingError | The account must have 2-factor authentication enabled (a password) before this method can be used. |
PasswordTooFreshError | The password was added too recently and {seconds} seconds must pass before using the method. |
SessionTooFreshError | The session logged in too recently and {seconds} seconds must pass before calling the method. |
SrpIdInvalidError | . |
You can import these from telethon.errors.
Example
from telethon.sync import TelegramClient
from telethon import functions, types
with TelegramClient(name, api_id, api_hash) as client:
result = client(functions.channels.EditCreatorRequest(
channel='username',
user_id='username',
password=types.InputCheckPasswordSRP(
srp_id=-12398745604826,
A=b'arbitrary\x7f data \xfa here',
M1=b'arbitrary\x7f data \xfa here'
)
))
print(result.stringify())