mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 18:10:56 +01:00
Revert "Don't use cached tokens for fallback"
This reverts commit 5a6deabd84
.
This commit is contained in:
parent
5a6deabd84
commit
eabeb7fdc6
2 changed files with 2 additions and 9 deletions
|
@ -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."}]} */
|
||||
|
|
|
@ -6,11 +6,10 @@ const API_ATTEMPTS = 16;
|
|||
export const twitterFetch = async (
|
||||
url: string,
|
||||
event: FetchEvent,
|
||||
fallback = false,
|
||||
validateFunction: (response: unknown) => boolean
|
||||
): Promise<unknown> => {
|
||||
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 !(
|
||||
|
|
Loading…
Add table
Reference in a new issue