我正在尝试获取对消息做出反应的用户ID,这是我的代码:
@client.event
async def on_raw_reaction_add(reaction):
message_id = 'message_id_here'
if reaction.message_id == message_id:
user = reaction.user
print(user)
答案 0 :(得分:0)
传递给on_raw_reaction_add
的有效负载是RawReactionActionEvent
对象。
如错误所述,RawReactionActionEvent
没有user
属性。相反,您可以简单地使用user_id
属性。