gpt4 book ai didi

discord - 在 Discord.py 中获取附件的 URL

转载 作者:行者123 更新时间:2023-12-04 09:56:51 26 4
gpt4 key购买 nike

我正在尝试获取用户附加的文件的 URL,以便稍后在我的代码中使用它,但是我不太确定如何去做。

@client.command(pass_context=True)
async def readURL(ctx, url):
# Do something

引用文献:
  • discord.ext.commands
  • Attachment.url
  • 最佳答案

    如果我正确理解了这个问题,它会是这样的:

    @client.command() # context is automatically passed in rewrite
    async def readURL(ctx):
    attachment = ctx.message.attachments[0] # gets first attachment that user
    # sent along with command
    print(attachment.url)

    引用文献:
  • Attachment.url
  • Message.attachments
  • 关于discord - 在 Discord.py 中获取附件的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61898621/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com