How to search content across multiple channel in youtube api?

不打扰是莪最后的温柔 提交于 2020-01-13 08:39:09

问题


I want to search youtube videos in a list of channels. In the code below, I am able to pass only one "Channelid" to the youtube api. Is there a way to pass multiple channel Ids ??

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,
    channelId=options.channelId
  ).execute() 

回答1:


You can not add comma separated channels here. Either you can leave it blank to search all channels, or you can have a request per each channel and merge results. There is no multichannel search API.




回答2:


As @Ibrahim has pointed out searching with multiple ChannelIDs is not possible. What can be done instead is do a search with no ChannelIDs at all. Each video result that you get will have the ChannelID for each of it. So you can loop through the result for items with your preferred list of channelIDs, and the matching ones can thus be filter.



来源:https://stackoverflow.com/questions/21667899/how-to-search-content-across-multiple-channel-in-youtube-api

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!