我想在頻道列表中搜索youtube視頻。在下面的代碼中,我只能將一個「Channelid」傳遞給youtube API。有沒有辦法通過多個通道ID?如何在youtube API中的多個頻道上搜索內容?
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()
這將是昂貴的,並會耗盡我的每日API請求配額非常快。有什麼辦法可以實現這個功能嗎? – Mayank
@Mayank:您是否找到了更好的解決方案來在一次搜索中查看多個channelIds? – ishandutta2007