mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
Fallback gracefully if guest token API doesnt work
This commit is contained in:
parent
753535d366
commit
c45814c092
1 changed files with 9 additions and 2 deletions
11
src/fetch.ts
11
src/fetch.ts
|
@ -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);
|
||||||
|
|
Loading…
Add table
Reference in a new issue