gpt4 book ai didi

youtube - 获取YouTube视频的标签并按标签搜索YouTube视频

转载 作者:行者123 更新时间:2023-12-03 05:21:08 25 4
gpt4 key购买 nike

我在YouTube数据API第3版中看不到任何端点,该端点可以:

  • 获取与视频关联的标签的列表。
  • 当然,搜索与标签或一组标签相匹配且在N上有(很大)上限的TOP N视频。我了解为什么实现此功能可能会带来挑战,主要是因为其涉及数据大小。 N应该是什么?对于相同的输入,我们是否应该每次都返回相同的N个结果?可能这可以参数化。

  • 我错过了这些终点吗?

    如果没有,是否有意识地决定不使用它们?您是否计划增加对这些功能的支持?如果这样做,我们何时才能使用它们?

    最佳答案

  • 使用 Videos.list 将返回视频的关联标签(请参见post)。您可以在API explorer中对其进行测试。其中id是视频ID(观看YouTube视频-https://www.youtube.com/watch?v=RQayAl5-fTs时可以在URL中看到)。
  • 不幸的是,我认为目前没有可用的API自动为您执行此操作。但是,我认为您正在寻找的类似于@ typo107在做的here:

  • First, retrieve a list of videos (returning minimal needed information, e.g. the video ID, title, and the high quality thumbnail URL):

    https://www.googleapis.com/youtube/v3/search?key={YOUR API KEY}&fields=items(id(videoId),snippet(title,thumbnails(high(url))))&part=id,snippet;

    Then batch the video IDs into one request to retrieve the associated tags:

    https://www.googleapis.com/youtube/v3/videos?key={YOUR API KEY}&fields=items(id,snippet(tags))&part=snippet&id={videoID01,videoID02,etc};

    很难评论N的值(对于 Top N视频)。全取决于你。

    If not, is it a conscious decision to not have them? Do you have plans to add support for these features? If you do, when are we likely to be able to use them?


    我相当确定这些问题是针对Google员工的,因此我不会在上面发表评论。

    关于youtube - 获取YouTube视频的标签并按标签搜索YouTube视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41943656/

    25 4 0