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,11 +8,16 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
...Constants.BASE_HEADERS
};
let apiAttempts = 0;
/* 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.
This can effectively mean virtually unlimited (read) access to Twitter's API,
which is very funny. */
while (apiAttempts < 3) {
apiAttempts++;
const activate = await fetch(`${Constants.TWITTER_API_ROOT}/1.1/guest/activate.json`, {
method: 'POST',
headers: headers,
@ -23,6 +28,9 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
const activateJson = (await activate.json()) as { guest_token: string };
const guestToken = activateJson.guest_token;
console.log('Activated guest:', activateJson);
console.log('Guest token:', guestToken);
/* Just some cookies to mimick what the Twitter Web App would send */
headers['Cookie'] = [
`guest_id_ads=v1%3A${guestToken}`,
@ -47,5 +55,14 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
)
).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 { };
};