我正在开发一个 bot 命令,当用户回复并调用该命令时,该命令会重新打印消息文本。
目前代码如下:
@bot.command(name='repeat_message', help='help me to understand bots')
async def repeat_message(ctx):
key_details=ctx.message.reference
#missing line
await asyncio.gather(ctx.send(line))
上面的key_details
会是旧消息的详细信息,例如:
<MessageReference message_id=123 channel_id=123 guild_id=123>
查看 documentation 我找不到可以让我获取原始消息的命令。如果一个不存在,我会感到惊讶,如果不存在,你能想出一个解决办法吗?
答案 0 :(得分:1)
您可以通过两种方式获取 MessageReference 的内容。
首先,您可以使用{
"policyRule": {
"if": {
"allOf": [
{
"field": "type",
"equals": "Microsoft.CustomProviders/resourceProviders/person"
},
{
"not": {
"field": "name",
"equals": "mike"
}
}
]
},
"then": {
"effect": "audit"
}
}
}
来获取.cached_message
对象,您可以通过获取Message
属性来获取内容。如果你这样做,它看起来像这样:
.content
使用 key_details=ctx.message.reference
msg_refd = key_details.cached_message
msg_content = msg_refd.content # String that holds what the referenced message said
的唯一问题是它只能从机器人的消息缓存中获取,所以如果它不在缓存中,那么它将返回 None。
为了缓解,您可以使用的另一种解决方案是使用 .cached_message
。这将保证一个消息对象,但速度较慢(虽然可能是微不足道的)。如果您要使用此函数,您的代码将如下所示:
fetch_message()