mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Network/ext API performance stats printed
This commit is contained in:
parent
0a7e256d14
commit
341f2e6987
1 changed files with 12 additions and 4 deletions
16
src/fetch.ts
16
src/fetch.ts
|
@ -89,12 +89,16 @@ export const twitterFetch = async (
|
||||||
}
|
}
|
||||||
|
|
||||||
if (newTokenGenerated || activate === null) {
|
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.
|
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,
|
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());
|
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 */
|
/* Let's grab that guest_token so we can use it */
|
||||||
|
@ -129,17 +133,21 @@ export const twitterFetch = async (
|
||||||
try {
|
try {
|
||||||
if (useElongator && typeof TwitterProxy !== 'undefined') {
|
if (useElongator && typeof TwitterProxy !== 'undefined') {
|
||||||
console.log('Fetching using elongator');
|
console.log('Fetching using elongator');
|
||||||
|
const performanceStart = performance.now();
|
||||||
apiRequest = await TwitterProxy.fetch(url, {
|
apiRequest = await TwitterProxy.fetch(url, {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: headers
|
headers: headers
|
||||||
});
|
});
|
||||||
console.log('Elongator request successful');
|
const performanceEnd = performance.now();
|
||||||
|
console.log(`Elongator request successful after ${performanceEnd - performanceStart}ms`);
|
||||||
} else {
|
} else {
|
||||||
|
const performanceStart = performance.now();
|
||||||
apiRequest = await fetch(url, {
|
apiRequest = await fetch(url, {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: headers
|
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();
|
response = await apiRequest?.json();
|
||||||
|
|
Loading…
Add table
Reference in a new issue