I want to search for youtube videos in the channel list. In the code below, I can only transfer one "Channelid" to apt youtube. 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)
search_response = youtube.search().list(
q=options.q,
part="id,snippet",
maxResults=options.max_results,
channelId=options.channelId
).execute()
source
share