discord.py bot 不会在嵌入中加载视频
Posted
技术标签:
【中文标题】discord.py bot 不会在嵌入中加载视频【英文标题】:discord.py bot does not load videos in embed 【发布时间】:2021-10-23 04:28:16 【问题描述】:嘿,我希望你有一个 gr8 时间,我的 discord.py 机器人不加载它从 api 获取的视频数据嵌入中的视频除了视频是伪装的,没有人看那些。 附上代码sn-p:
@commands.command(name='aww',
aliases=["aw", "cute", "cutepics"])
async def aww(self, ctx):
sub_submissions = reddit.subreddit('aww').hot()
post_to_pick = random.randint(1, 100)
for i in range(0, post_to_pick):
submission = next(x for x in sub_submissions if not x.stickied)
e = discord.Embed(
title=f'Your request!',
description=f'submission.title\nsubmission.selftext')
e.set_image(url=submission.url)
e.set_footer(text=f"OFC!Thank dove#1565 for this amazing quickie!? \nRequested by ctx.author")
await ctx.send(embed=e)
我在代码中没有其他问题,所以我使用 praw 从 api 获取数据。
【问题讨论】:
【参考方案1】:您的要求是不可能的。 Discord 的 API 不允许您将视频附加到嵌入中。
【讨论】:
以上是关于discord.py bot 不会在嵌入中加载视频的主要内容,如果未能解决你的问题,请参考以下文章