1

我使用这个脚本在 Telethon 中连接和创建会话

from telethon import TelegramClient
from telethon.tl.functions.messages import GetHistoryRequest
from telethon.utils import get_input_peer
api_id = 7****
api_hash = 'ef584d*****************'
client = TelegramClient('+15159947451', api_id, api_hash)
client.connect()
if not client.is_user_authorized():
    client.send_code_request('+15159947451')
client.sign_in('+15159947451', cod)

有了这个鳕鱼,我可以很好地登录这个号码电报并创建文件:+15159947451.session。

现在我关闭并断开连接,我怎么能用这个文件+15159947451.session再次登录这个号码。

我使用此代码,但此代码有错误:

from telethon import TelegramClient
from telethon.tl.functions.messages import GetHistoryRequest
from telethon.utils import get_input_peer
api_id = 7****
api_hash = 'ef584d180eee*******************'
number='+15152934803'
client = TelegramClient('00', api_id, api_hash)
client.session.try_load_or_create_new(session_user_id='+15159947451')
client.connect()

但我有这个错误

raise error
telethon.errors.RPCError: (RPCError(...), 'AUTH_KEY_UNREGISTERED (401):       The key is not registered in the system.')
4

2 回答 2

5

问题是这一行:

client = TelegramClient('+15xxxxxxxxx', api_id, api_hash)

您不必将电话号码作为第一个参数传递。您必须传递会话的名称,例如“myname”。

你得到这个:

telethon.errors.RPCError: (RPCError(...), 'AUTH_KEY_UNREGISTERED (401):       The key is not registered in the system.')

因为您更改了会话的名称(现在将其称为“00”),而您还没有在该会话上登录。因此,为了简单地解决您的问题:

client = TelegramClient('some_name', api_id, api_hash)
client.connect()
if not client.is_user_authorized():
    client.send_code_request('+15xxxxxxxxx')
    client.sign_in('+15xxxxxxxxx', cod)

然后删除该.send_code_request(...)行:

client = TelegramClient('some_name', api_id, api_hash)
client.connect()

.session请注意,如果您更改一些尚不存在的“some_name” ,则必须重新创建它。此外,您可以将.session文件重命名为您想要的任何名称,并将其名称用作参数(因为它已经存在)。

于 2017-06-19T08:26:38.070 回答
2
from telethon import TelegramClient

# These example values won't work. You must get your own api_id and
# api_hash from https://my.telegram.org, under API Development.
api_id = ****** # Your api_id
api_hash = '********************************' # Your api_hash
phone_number = '+989122594574' # Your phone number

client = TelegramClient(phone_number, api_id, api_hash)
client.connect()

if not client.is_user_authorized():
    client.send_code_request(phone_number)
    client.sign_in(phone_number, input('Enter the code: '))


client.send_message('amir2b', 'Hello! Amir Bashiri')
于 2017-09-10T06:24:03.007 回答