From 341f2e698773e3f441028416d8876ee2738d9557 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Tue, 22 Aug 2023 01:19:56 -0400 Subject: [PATCH] Network/ext API performance stats printed --- src/fetch.ts | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/fetch.ts b/src/fetch.ts index f394f18..12ab957 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -89,12 +89,16 @@ export const twitterFetch = async ( } if (newTokenGenerated || activate === null) { - /* If all goes according to plan, we have a guest token we can use to call API + /* We have a guest token that we can use to call API AFAIK there is no limit to how many guest tokens you can request. This can effectively mean virtually unlimited (read) access to Twitter's API, - which is very funny. */ + which is very funny. Though they've since restricted accessing NSFW tweets with this method. */ + const timeBefore = performance.now(); activate = await fetch(guestTokenRequest.clone()); + const timeAfter = performance.now(); + + console.log(`Guest token request after ${timeAfter - timeBefore}ms`); } /* Let's grab that guest_token so we can use it */ @@ -129,17 +133,21 @@ export const twitterFetch = async ( try { if (useElongator && typeof TwitterProxy !== 'undefined') { console.log('Fetching using elongator'); + const performanceStart = performance.now(); apiRequest = await TwitterProxy.fetch(url, { method: 'GET', headers: headers }); - console.log('Elongator request successful'); + const performanceEnd = performance.now(); + console.log(`Elongator request successful after ${performanceEnd - performanceStart}ms`); } else { + const performanceStart = performance.now(); apiRequest = await fetch(url, { method: 'GET', headers: headers }); - console.log('Guest API request successful'); + const performanceEnd = performance.now(); + console.log(`Guest API request successful after ${performanceEnd - performanceStart}ms`); } response = await apiRequest?.json();