fent / node-ytdl-core

YouTube video downloader in javascript.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Like and unlike properties are null

namlq93 opened this issue · comments

commented

I'm using getInfo to get info of youtube video. But now, like and unlike properties are null

const id = '7wNb0pHyGuI';
ytdl.getInfo(id).then(info => {
  console.log('title:', info.videoDetails.title);
  console.log('rating:', info.player_response.videoDetails.averageRating);
  console.log('uploaded by:', info.videoDetails.author.name);
  const json = JSON.stringify(info, null, 2)
    // eslint-disable-next-line max-len
    .replace(/(ip(?:=|%3D|\/))((?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|[0-9a-f]{1,4}(?:(?::|%3A)[0-9a-f]{1,4}){7})/ig, '$10.0.0.0');
  fs.writeFile('info.json', json, err2 => {
    if (err2) throw err2;
  });
});

image

ytdl-core version: ytdl-core@4.11.4

also, dislikes will stay null for the foreseeable future

is there a solution for this one?