1
Fork 0

use invapi instead

This commit is contained in:
Ashley //// 2024-03-09 17:00:29 +00:00
parent 3dcc088c29
commit 2515913716

View file

@ -83,7 +83,7 @@ class InnerTubePokeVidious {
try { try {
const [invComments, videoInfo, videoData] = await Promise.all([ const [invComments, videoInfo, videoData] = await Promise.all([
fetch(`${this.config.invapi}/comments/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()), fetch(`${this.config.invapi}/comments/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()),
fetch(`${this.config.invapi_alt}/videos/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()), fetch(`${this.config.invapi}/videos/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()),
curly curly
.get(`${this.config.tubeApi}video?v=${v}`, { .get(`${this.config.tubeApi}video?v=${v}`, {
httpHeader: Object.entries(headers).map(([k, v]) => `${k}: ${v}`), httpHeader: Object.entries(headers).map(([k, v]) => `${k}: ${v}`),
@ -100,7 +100,7 @@ class InnerTubePokeVidious {
const { json, video } = videoData; const { json, video } = videoData;
const channel_uploads = await fetch( const channel_uploads = await fetch(
`${this.config.invapi_alt}/channels/${vid.authorId}?hl=${contentlang}&region=${contentregion}` `${this.config.invapi}/channels/${vid.authorId}?hl=${contentlang}&region=${contentregion}`
); );
const p = this.getJson(await channel_uploads.text()); const p = this.getJson(await channel_uploads.text());