JSFiddle - React, Tailwind, and code Playground
by mhlavacka
JavaScript
function getVids(playlistId, nextPageToken){
$.get(
"https://www.googleapis.com/youtube/v3/playlistItems",{
part : 'snippet',
maxResults : 20,
playlistId : playlistId,
pageToken: nextPageToken,
key: '{API_KEY}'},
function(data) {
console.log(data.nextPageToken);
console.log(data.items.length);
getVids(playlistId, data.nextPageToken);
}
);
}
getVids('RDaUWYDaVp92I');