簡體   English   中英

如何在 telethon 中離開帶有 id 的頻道或群組?

[英]How to leave a channel or group with id in telethon?

嗨,我正在嘗試使用此腳本離開帶有 id 的頻道,但它沒有顯示任何結果LeaveChannelRequest對我也不起作用,這是我嘗試過的:

import asyncio
import logging
import re
import time
import os
import sys
import requests

logging.basicConfig(level=logging.ERROR)

from telethon import TelegramClient, events
from telethon.tl.functions.channels import LeaveChannelRequest
from telethon.tl.functions.channels import JoinChannelRequest
from telethon.tl.functions.messages import GetBotCallbackAnswerRequest
from datetime import datetime
from colorama import Fore, init as color_ama
color_ama(autoreset=True)

os.system('cls' if os.name=='nt' else 'clear')

# my.telegram.org values, get your own there
api_id = ''
api_hash = ''

input_channel = '-1001226909513'
def print_msg_time(message):
    print('[' + Fore.YELLOW + f'{datetime.now().strftime("%H:%M:%S")}' + Fore.RESET + f'] {message}')
async def main():
    if len(sys.argv) < 2:
        print('Usage: python start.py phone_number')
        print('-> Input number in international format (example: +10123456789)\n')
        e = input('Press any key to exit...')
        exit(1)

    phone_number = sys.argv[1]

    if not os.path.exists("session"):
        os.mkdir("session")
    client = TelegramClient('session/' + phone_number, api_id, api_hash)
    await client.start(phone_number)
    me = await client.get_me()
    print(Fore.GREEN + f'               Current account: {me.first_name}({me.username})\n' + Fore.RESET)
    print_msg_time('leaving channels')
    async def main():
        await client.delete_dialog(input_channel)
        print_msg_time(f'{input_channel} has been leaved')

asyncio.get_event_loop().run_until_complete(main())

我的問題在哪里?

離開頻道或群組的方法調用定義在內部function

[...]
print_msg_time('leaving channels')
async def main():
    await client.delete_dialog(input_channel)
    print_msg_time(f'{input_channel} has been leaved')

在外部 function 中未調用,您可以避免使用內部 function。例如,您可以像這樣調用delete_dialog方法

[...]
print_msg_time('leaving channels')
await client.delete_dialog(input_channel)
print_msg_time(f'{input_channel} has been leaved')

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM