我无法将其他组的用户添加到我的组

2024-05-28 19:42:57 发布

您现在位置:Python中文网/ 问答频道 /正文

我无法将其他组的用户添加到我的组

我甚至尝试添加10个用户,但都没有用

它只在用户是机器人时工作

I am using Telethon 1.0.2 and Python 3.6.5

结果:

Updates(
        updates=[
        ],
        users=[
        ],
        chats=[
                Channel(
                        id=1201645703,
                        title='hello group',
                        photo=ChatPhotoEmpty(
                        ),
                        date=datetime.utcfromtimestamp(1530507727),
                        version=0,
                        creator=True,
                        left=False,
                        editor=False,
                        broadcast=False,
                        verified=False,
                        megagroup=True,
                        restricted=False,
                        democracy=True,
                        signatures=False,
                        min=False,
                        access_hash=5823774251955326415,
                        username=None,
                        restriction_reason=None,
                        admin_rights=None,
                        banned_rights=None,
                        participants_count=None
                ),
        ],
        date=datetime.utcfromtimestamp(1530554830),
        seq=0
)

Tags: and用户nonefalsetruedatetimedate机器人

热门问题