I am sending requests to the YouTube v3 API at the following endpoint:
const url = `https://www.googleapis.com/youtube/v3/search?key=${process.env.YOUTUBE_API_KEY}&part=snippet&q=foo`;I am going to change this to use channelId to specify a channel as foo is the channel name. I want to also use the search:list functionality to search for videos within a specific channel that have titles containing keywords that as I understand can be passed via the q parameter.
Is there a way to provide multiple values for q as I need to search video titles on multiple criteria?