DrKain / scrape-youtube

A lightning fast package to scrape YouTube search results
MIT License
112 stars 30 forks source link

Scrape available channels #40

Closed fadytaher closed 3 years ago

fadytaher commented 3 years ago

Is there a away to scrape available youtube channels ?

DrKain commented 3 years ago

Added in 2.1.6

youtube.search('Poets of the fall', { type: 'channel' }).then(
    (results) => console.log(results.channels),
    (err) => console.log(err)
);
fadytaher commented 3 years ago
const youtube = require('scrape-youtube').default;

youtube.search('Poets of the fall', { type: 'channel' }).then(
    (results) => console.log(results.channels),
    (err) => console.log(err)
);

getting undefined using the above snippet

DrKain commented 3 years ago

You need to update the package first.