mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Retry if guest token or conversation load fails
This commit is contained in:
parent
92776d8c51
commit
753535d366
1 changed files with 47 additions and 30 deletions
17
src/fetch.ts
17
src/fetch.ts
|
@ -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 { };
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue