使用 telethon 设置@username、名字和姓氏
Setting up @username, First and Last names using telethon
如何在 telethon 的帮助下更改 用户名、名字、姓氏?只找到开启2F验证的方法client.edit_2fa(new_password='12345')
。有没有类似于更改用户名,名字和姓氏的东西。
Telethon 库提供对 Telegram API 的完全访问权限。您可以扫描官方文档并找到必要的方法。有两个地方可以得到答案:
然后你可以检查Telethon API helper site这会给你想要的python方法
from telethon.tl.functions.account import UpdateProfileRequest
如何在 telethon 的帮助下更改 用户名、名字、姓氏?只找到开启2F验证的方法client.edit_2fa(new_password='12345')
。有没有类似于更改用户名,名字和姓氏的东西。
Telethon 库提供对 Telegram API 的完全访问权限。您可以扫描官方文档并找到必要的方法。有两个地方可以得到答案:
然后你可以检查Telethon API helper site这会给你想要的python方法
from telethon.tl.functions.account import UpdateProfileRequest