diff --git a/src/api/status.ts b/src/api/status.ts index a2501a9..8f2d482 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -167,11 +167,7 @@ export const statusAPI = async ( typeof tweet.full_text === 'undefined' && conversation.timeline?.instructions?.length > 0 ) { - console.log('Unfortunately, this Tweet is still not accessible despite trying fallback. Conversation: ', conversation, ' Tweet: ', tweet); return { code: 401, message: 'PRIVATE_TWEET' }; - } else if (typeof tweet.full_text === 'undefined') { - console.log('Accessing the fallback resulted in an error'); - return { code: 500, message: 'API_FAIL' }; } } else { /* {"errors":[{"code":34,"message":"Sorry, that page does not exist."}]} */ diff --git a/src/fetch.ts b/src/fetch.ts index 9642269..da2cc79 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -6,11 +6,10 @@ const API_ATTEMPTS = 16; export const twitterFetch = async ( url: string, event: FetchEvent, - fallback = false, validateFunction: (response: unknown) => boolean ): Promise => { let apiAttempts = 0; - let newTokenGenerated = fallback; + let newTokenGenerated = false; const [userAgent, secChUa] = generateUserAgent(); console.log(`Outgoing useragent for this request:`, userAgent); @@ -23,7 +22,7 @@ export const twitterFetch = async ( }; const guestTokenRequest = new Request( - `${fallback ? Constants.API_FALLBACK_DOMAIN : Constants.TWITTER_API_ROOT}/1.1/guest/activate.json`, + `${Constants.TWITTER_API_ROOT}/1.1/guest/activate.json`, { method: 'POST', headers: tokenHeaders, @@ -99,7 +98,6 @@ export const twitterFetch = async ( const guestToken = activateJson.guest_token; - console.log(guestTokenRequest); console.log(newTokenGenerated ? 'Activated guest:' : 'Using guest:', activateJson); console.log('Guest token:', guestToken); @@ -186,7 +184,6 @@ export const fetchConversation = async ( fallback ? Constants.API_FALLBACK_DOMAIN : Constants.TWITTER_API_ROOT }/2/timeline/conversation/${status}.json?${Constants.GUEST_FETCH_PARAMETERS}`, event, - fallback, (_conversation: unknown) => { const conversation = _conversation as TimelineBlobPartial; return !(