does this work idk qwq

This commit is contained in:
Ashley 2023-10-21 07:28:29 +00:00
parent cefc461e24
commit 0ade5a6253

View file

@ -41,16 +41,17 @@ class PokeTubeDislikesAPIManager {
* @private * @private
*/ */
async _getEngagementData() { async _getEngagementData() {
const apiUrl = `https://returnyoutubedislikesapi.com/votes?v=${this.videoId}&hash=d0550b6e28c8f93533a569c314d5b4e2`; var url = [`https://p.poketube.fun/api?v=${this.videoId}&hash=d0550b6e28c8f93533a569c314d5b4e2`, `https://returnyoutubedislikeapi.com/votes?videoId=${this.videoId}`]
const dislikes =
url[Math.floor(Math.random() * url.length)];
const { fetch } = await import("undici"); const { fetch } = await import("undici");
var engagementp = await fetch(apiUrl)
var engagement = await engagementp.json(); const engagement = await fetch(dislikes).then((res) => res.json());
return engagement; return engagement;
} }
/** /**
* Retrieves data about the YouTube video and its engagement. * Retrieves data about the YouTube video and its engagement.
* @returns {Promise<object>} A Promise that resolves with an object containing video and engagement data. * @returns {Promise<object>} A Promise that resolves with an object containing video and engagement data.
@ -74,7 +75,7 @@ var engagement = await engagementp.json();
} }
/* /*
Returns basic data about a given YouTube video using PokeTubeDislikesAPIManager. Returns basic data about a given YouTube video using PokeTubeAPI.
@async @async
@function @function
@param {string} videoId - The YouTube video ID to get data for. @param {string} videoId - The YouTube video ID to get data for.
@ -84,7 +85,7 @@ Returns basic data about a given YouTube video using PokeTubeDislikesAPIManager.
const getDislikesData = async (videoId) => { const getDislikesData = async (videoId) => {
const pokeTubeAPI = new PokeTubeDislikesAPIManager(videoId); const pokeTubeAPI = new PokeTubeDislikesAPIManager(videoId);
return await PokeTubeDislikesAPIManager.getData(); return await pokeTubeAPI.getData();
}; };
module.exports = getDislikesData; module.exports = getDislikesData;