Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to get a list of the most recent videos uploaded to multiple YouTube channels?
    primarykey
    data
    text
    <p>I'm trying to get a list of the most recent videos uploaded to multiple YouTube channels in the order that they were uploaded. Sort of like how the subscription box on YouTube shows all of the recent videos uploaded by multiple people (that you are subscribed to).</p> <pre><code>GET https://www.googleapis.com/youtube/v3/search? part=snippet&amp;channelId=UC4XmzE3vYbp7h4B8dxcoN_A&amp;maxResults=20&amp;order=date &amp;key={YOUR_API_KEY} </code></pre> <p>That search will return a list of the most recent videos uploaded from a single channel. However, I'm trying to display a group of people within the same list.</p> <pre><code>GET https://www.googleapis.com/youtube/v3/search? part=snippet &amp;channelId={UCXA7dMwWUS8n00Xq-Qvj38A,UC4XmzE3vYbp7h4B8dxcoN_A} &amp;maxResults=20&amp;order=date&amp;key={YOUR_API_KEY} </code></pre> <p>I've tried adding an additional YouTube <code>channelId</code> (separated by a comma) with the first one, and that seems to break the search and shows "random" videos (none from either <code>channelId</code> listed).</p> <p>If anyone knows how to accomplish this with one API query, I'd be very happy.</p> <hr> <p>To be more clear, as I mentioned in a comment below, this is what I'm looking to do:</p> <blockquote> <p>I'm not trying to get a specific users "subscriptions", but instead I'm trying to combine multiple channels recent uploads (videos) into one list. This way I can display my "teams" videos in chronological order on my website in the order that they are uploaded.</p> </blockquote>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload