如何从discord.py rewrite上的消息中获得反应列表?

时间:2019-06-12 19:48:03

标签: python python-3.x discord discord.py discord.py-rewrite

我正在制作一个赠品机器人,但我一直试图获取消息的响应列表。我该怎么办?

我已经尝试过ctx.message.reactionsmessage.reactions(在这种情况下,消息是一个包含await channel.fetch_message(messageID)的变量)。

async def stopgiveaway(ctx, messageID):
    reaction = []
    guild = bot.get_guild(g_id) #    g_id is the guild id
    channel = guild.get_channel(channel_id) #    same as g_id but for channel 
    message = await channel.fetch_message(messageID)
    reaction = reaction.append(ctx.message.reactions)
    users = reaction.users(limit=None, after=None)

我不是python或discord.py的专家,我仍在学习,如果这是一个愚蠢的问题,非常抱歉。

1 个答案:

答案 0 :(得分:1)

reaction = reaction.append(ctx.message.reactions)

此行是错误的; reaction.append已经就地修改了reaction列表 并返回了None,因此分配将您的列表替换为None。但是,目前还不清楚您如何期望它能正常工作。 ctx.message.reactions已经是一个列表,因此您可能真的不想append到另一个列表(作为嵌套列表),并且无论哪种方式,列表都没有.users方法。