Anonymous YouTube playlist resolver.
npm install arya-ytpljs
var ytpl = require('ytpl');
ytpl('UU_aEa8K-EOJ3D6gOs7HcyNg', function(err, playlist) {
if(err) throw err;
dosth(playlist);
});
`
API
$3
Attempts to resolve the given playlist id
* id
* id of the yt-playlist
* or playlist link
* or user link (resolves uploaded playlist)
* or channel link (resolves uploaded playlist)
* options
* object with options
* possible settings:
* limit[Number] -> limits the pulled items, defaults to 100, set to 0 or Infinity to get the whole playlist
* callback(err, result)
* function
* getting fired after the request is done
* contains an error or a result
* returns a Promise when no callback is defined
* Example response
$3
Returns true if able to parse out a (formally) valid playlist ID.
$3
Returns a playlist ID from a YouTube URL. Can be called with the playlist ID directly, in which case it returns it. If callback` isn't given, returns a promise.