Fallback gracefully if guest token API doesnt work

This commit is contained in:
dangered wolf 2022-07-15 15:05:19 -04:00
parent 753535d366
commit c45814c092
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -15,7 +15,7 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
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. */
while (apiAttempts < 3) { while (apiAttempts < 5) {
apiAttempts++; apiAttempts++;
const activate = await fetch(`${Constants.TWITTER_API_ROOT}/1.1/guest/activate.json`, { const activate = await fetch(`${Constants.TWITTER_API_ROOT}/1.1/guest/activate.json`, {
@ -25,7 +25,14 @@ export const fetchUsingGuest = async (status: string): Promise<TimelineBlobParti
}); });
/* Let's grab that guest_token so we can use it */ /* Let's grab that guest_token so we can use it */
const activateJson = (await activate.json()) as { guest_token: string }; let activateJson: { guest_token: string };
try {
activateJson = (await activate.json()) as { guest_token: string }
} catch(e: any) {
continue;
}
const guestToken = activateJson.guest_token; const guestToken = activateJson.guest_token;
console.log('Activated guest:', activateJson); console.log('Activated guest:', activateJson);