Youtube未提供拼写错误的搜索结果

时间:2015-12-13 05:15:54

标签: python youtube-api youtube-data-api

我正在使用从Google Developers网站剪下的以下代码。它工作正常但是当我搜索术语shukareh alla时,我得到了ZERO结果。该术语实际拼写错误,但我想得到拼写错误的条款的结果,就像YouTube网站为我提供上述期限的结果。我不知道是否应该为此指定一些额外参数,或者YouTube API不提供此功能?

from apiclient.discovery import build
from apiclient.errors import HttpError
from oauth2client.tools import argparser

DEVELOPER_KEY = "***************"
YOUTUBE_API_SERVICE_NAME = "youtube"
YOUTUBE_API_VERSION = "v3"

def youtube_search(options):
  youtube = build(YOUTUBE_API_SERVICE_NAME, YOUTUBE_API_VERSION,
  developerKey=DEVELOPER_KEY)

  # Call the search.list method to retrieve results matching the specified
  # query term.
  search_response = youtube.search().list(
    q=options.q,
    part="id,snippet",
    maxResults=options.max_results
  ).execute()

  videos = []
  channels = []
  playlists = []

  # Add each result to the appropriate list, and then display the lists of
  # matching videos, channels, and playlists.
  for search_result in search_response.get("items", []):
    if search_result["id"]["kind"] == "youtube#video":
      videos.append("%s (%s)" % (search_result["snippet"]["title"],
                             search_result["id"]["videoId"]))
    elif search_result["id"]["kind"] == "youtube#channel":
      channels.append("%s (%s)" % (search_result["snippet"]["title"],
                               search_result["id"]["channelId"]))
    elif search_result["id"]["kind"] == "youtube#playlist":
      playlists.append("%s (%s)" % (search_result["snippet"]["title"],
                                search_result["id"]["playlistId"]))

  print "Videos:\n", "\n".join(videos), "\n"
  print "Channels:\n", "\n".join(channels), "\n"
  print "Playlists:\n", "\n".join(playlists), "\n"


if __name__ == "__main__":
  argparser.add_argument("--q", help="Search term", default="shukareh alla")
  argparser.add_argument("--max-results", help="Max results", default=10)
  args = argparser.parse_args()

  try:
    youtube_search(args)
  except HttpError, e:
    print "An HTTP error %d occurred:\n%s" % (e.resp.status, e.content)

3 个答案:

答案 0 :(得分:1)

Search: list返回与API请求中指定的查询参数匹配的搜索结果集合。

  

q string q参数指定要搜索的查询词。您的   请求也可以使用布尔NOT( - )和OR(|)运算符   排除视频或查找与其中一个相关联的视频   几个搜索词。例如,要搜索匹配的视频   无论是“划船”还是“航行”,都要将q参数值设置为   划船|帆船。同样,要搜索匹配的视频   “划船”或“航行”而不是“钓鱼”,将q参数值设置为   划船|航行 - 钓鱼。请注意,管道符必须是   在您的API请求中发送URL时,会对其进行转义。 URL转义的值   管道符是%7C。

YouTube API会返回您发送的请求的所有结果。它不会拼写为你检查它。您的应用程序必须检查拼写,然后将正确的拼写发送到YouTube API。

答案:YouTube API不提供拼写检查功能。

答案 1 :(得分:0)

看起来我有0个结果。

enter image description here

答案 2 :(得分:0)

正如DaImTo所说,Youtube API不提供任何拼写检查功能。我能够使用Google Custom Search Engine API进行拼写检查。我为网站“youtube.com”创建了一个自定义网站搜索引擎。每当我的Youtube搜索结果为零(使用Youtube API)时,我都会使用自定义搜索API来搜索相同的关键字。关于自定义搜索引擎API的最好的事情是,如果搜索关键字的结果为零且搜索关键字不正确,则会进行拼写检查并返回更正后的搜索查询。