Discord.py - 如何使用此人的 ID 向某人发送私人消息?

时间:2023-05-11
本文介绍了Discord.py - 如何使用此人的 ID 向某人发送私人消息?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我想知道如何向具有他们 ID 的人发送私人消息

I would like to know how do I send private messages to someone with they'r ID

帮助

推荐答案

@client.command(pass_context=True)
async def dm(ctx):
    user=await client.get_user_info("User's ID here")
    await client.send_message(user, "Your message goes here")
    # This works ^

这篇关于Discord.py - 如何使用此人的 ID 向某人发送私人消息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:Discord.py 变量在整个代码中不是恒定的 下一篇:Discord.py member.server_default_channel 中的参数无效

相关文章