I think I answered in your last post, but to those who did not see it. Here is a snippet from my own bot that implements it. :)
@client.command(pass_context = True)
async def test(ctx):
msg = await client.say('TEST')
await client.add_reaction(msg, "?")
await asyncio.sleep(5)
cache_msg = discord.utils.get(client.messages, id = msg.id)
for reactor in cache_msg.reactions:
reactors = await client.get_reaction_users(reactor)
#from here you can do whatever you need with the member objects
for member in reactors:
await client.say(member.name)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…