1

Telethon AP Iを使用していますが、GetParticipantsRequest 関数で特権エラーが発生します。自分のテレグラムチャネル内でユーザーを取得しようとすると、管理者になります。

telethon.errors.rpc_error_list.ChatAdminRequiredError: (ChatAdminRequiredError(...), 'Chat admin privileges are required to do that in the specified chat (for e
xample, to send a message in a channel which is not yours)')

私のテレグラムグループで同じコードルーチンを実行すると、それは魅力のように機能するため、意味がありません.

ルーチンは次のとおりです。

def getUserNames(channel):
offset = 0
limit = 100
all_participants = []
selected_participants = []
channel = client(ResolveUsernameRequest(channel))
channel = InputChannel(channel.chats[0].id, channel.chats[0].access_hash)       

while True:
    participants = client(
        GetParticipantsRequest(channel, ChannelParticipantsSearch(''), offset, limit, 0)
    )
    if not participants.users:
        break
    all_participants.extend(participants.users)
    offset += len(participants.users)

if len(all_participants):
    for x in all_participants:
        if x.username: selected_participants.append(x.username)
    print (selected_participants)
    return selected_participants
else:
    return -1
4

1 に答える 1