mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 11:20:19 +00:00
9 lines
300 B
JavaScript
9 lines
300 B
JavaScript
const YouTube = require('simple-youtube-api');
|
|
const youtube = new YouTube(' Y o u r A p i K e y ');
|
|
|
|
youtube.videoById('https://www.youtube.com/watch?v=3odIdmuFfEY')
|
|
.then(video => {
|
|
console.log(`The video's title is ${video[0].title}`);
|
|
})
|
|
.catch(console.log);
|