Created
May 21, 2014 22:09
-
-
Save ericsaboia/24b12a4e8d18592c3159 to your computer and use it in GitHub Desktop.
Reproduces youtube-search fatal error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var youtubeSearch = require('youtube-search'); | |
var keyword = 'Looney Tunes: De Volta à Ação filme trailer oficial'; | |
youtubeSearch.search(keyword, {maxResults: 1}, function (err, youtube) { | |
console.log(err); | |
console.log(youtube); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment