Discord嵌入图像在discord.py中不起作用
Posted
技术标签:
【中文标题】Discord嵌入图像在discord.py中不起作用【英文标题】:Discord Embed image not working in discord.py 【发布时间】:2021-11-26 19:56:39 【问题描述】:我正在用 discord.py 制作一个机器人,我想用玻璃过滤器发送上述用户的头像。这是我的代码
import aiohttp
import json
import requests
bot = commands.Bot(command_prefix=']')
#glass filter
@bot.command()
async def glass (ctx,*,person:discord.Member =None) :
member = ctx.message.author
person: discord.Member
embed = discord.Embed ()
mentiondp = member.avatar_url
embed.set_image (url = f'https://some-random-api.ml/canvas/glass?avatar=mentiondp' )
await ctx.send (embed=embed)
但是当我尝试 ]glass @DankMemer 它发送一个空白嵌入..
请帮帮我!
【问题讨论】:
【参考方案1】:目前 Discord 嵌入已关闭。您需要稍等一下,直到他们修复它。 https://discordstatus.com
【讨论】:
哦,谢谢您的告知! 但是我的其他嵌入工作正常! 您是否检查了图像 URL 是否有效?它返回一个带有 元素的 html 页面......您还需要从那里获取 URL。 @RovinduThamuditha 是的,但现在我意识到 api 不起作用:(以上是关于Discord嵌入图像在discord.py中不起作用的主要内容,如果未能解决你的问题,请参考以下文章
client.get_user() 在 discord.py 中不起作用
如何在嵌入 discord.py 中使用 markdown 语法发送图像