Retry if guest token or conversation load fails

This commit is contained in:
dangered wolf 2022-07-15 14:40:52 -04:00
parent 92776d8c51
commit 753535d366
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -8,44 +8,61 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
...Constants.BASE_HEADERS ...Constants.BASE_HEADERS
}; };
let apiAttempts = 0;
/* If all goes according to plan, we have a guest token we can use to call API /* If all goes according to plan, we have a guest token 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. */
const activate = await fetch(`${Constants.TWITTER_API_ROOT}/1.1/guest/activate.json`, { while (apiAttempts < 3) {
method: 'POST', apiAttempts++;
headers: headers,
body: ''
});
/* Let's grab that guest_token so we can use it */ const activate = await fetch(`${Constants.TWITTER_API_ROOT}/1.1/guest/activate.json`, {
const activateJson = (await activate.json()) as { guest_token: string }; method: 'POST',
const guestToken = activateJson.guest_token; headers: headers,
body: ''
});
/* Just some cookies to mimick what the Twitter Web App would send */ /* Let's grab that guest_token so we can use it */
headers['Cookie'] = [ const activateJson = (await activate.json()) as { guest_token: string };
`guest_id_ads=v1%3A${guestToken}`, const guestToken = activateJson.guest_token;
`guest_id_marketing=v1%3A${guestToken}`,
`guest_id=v1%3A${guestToken}`,
`ct0=${csrfToken};`
].join('; ');
headers['x-csrf-token'] = csrfToken; console.log('Activated guest:', activateJson);
headers['x-twitter-active-user'] = 'yes'; console.log('Guest token:', guestToken);
headers['x-guest-token'] = guestToken;
/* We pretend to be the Twitter Web App as closely as possible, /* Just some cookies to mimick what the Twitter Web App would send */
so we use twitter.com/i/api/2 instead of api.twitter.com/2 */ headers['Cookie'] = [
const conversation = (await ( `guest_id_ads=v1%3A${guestToken}`,
await fetch( `guest_id_marketing=v1%3A${guestToken}`,
`${Constants.TWITTER_ROOT}/i/api/2/timeline/conversation/${status}.json?${Constants.GUEST_FETCH_PARAMETERS}`, `guest_id=v1%3A${guestToken}`,
{ `ct0=${csrfToken};`
method: 'GET', ].join('; ');
headers: headers
}
)
).json()) as TimelineBlobPartial;
return conversation; headers['x-csrf-token'] = csrfToken;
headers['x-twitter-active-user'] = 'yes';
headers['x-guest-token'] = guestToken;
/* We pretend to be the Twitter Web App as closely as possible,
so we use twitter.com/i/api/2 instead of api.twitter.com/2 */
const conversation = (await (
await fetch(
`${Constants.TWITTER_ROOT}/i/api/2/timeline/conversation/${status}.json?${Constants.GUEST_FETCH_PARAMETERS}`,
{
method: 'GET',
headers: headers
}
)
).json()) as TimelineBlobPartial;
if (typeof conversation.globalObjects === 'undefined') {
console.log('Failed to fetch conversation, got', conversation);
continue;
}
return conversation;
}
// @ts-ignore - This is only returned if we completely failed to fetch the conversation
return { };
}; };