youtube-node
youtube-node copied to clipboard
Youtube api implementation for nodeJS
I'd like to see the items of a playlist longer than 50 songs, but the function currently doesn't take a pagetoken marameter.
on [https://developers.google.com/youtube/v3/docs/search/list](https://developers.google.com/youtube/v3/docs/search/list) type video is valid. But it doesn't work, it still returns channels instead of only videos. `youTube.addParam('type', 'video')` Any idea what it could be?
This function takes the params `(id, maxResults, callback) `. But the comment incorrectly specifies them as `id`, `id` and `callback`. The comment should be updated, changing the `id` to `maxResults`....
Hi, I'm trying to add more parts to the search function with the following code but I don't see them in the results Code: ``` js var YouTube = require('youtube-node');...
v2.0
Hola @christopher-ramirez Este repositorio sigue recibiendo pull request. Hacemos el cambio a https://github.com/christopher-ramirez/youtube-query? Saludos
Before every API-Call you call self.clearParams(); self.clearParts(); which makes it impossible for users to add own Params/Parts.
Hi, I'm using this wonderful API and it worked perfectly. But I need it to be promise base as my whole application is promise base and this API return result...
``` var arama = function(){ var youTube = new YouTube(); youTube.setKey('key'); youTube.search('search', 15, function(error, result) { if (error) { console.log(error); } else { Upload.cron(); result.items.forEach(function(item) { if(item.id.videoId){ videolar.push(item.id.videoId); // rdown(item.id.videoId);...