mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 10:00:55 +01:00
Merge pull request #343 from FixTweet/summer-2023-api-fixes
Fix some recent api woes (still not complete)
This commit is contained in:
commit
a34838c018
5 changed files with 15 additions and 10 deletions
|
@ -1,4 +1,3 @@
|
|||
{
|
||||
"FixTweet": "https://github.com/FixTweet/FixTweet",
|
||||
"FixTweet - Embed videos, polls & more": "https://github.com/FixTweet/FixTweet"
|
||||
"FixTweet - Recovering from API woes": "https://github.com/FixTweet/FixTweet/issues/333"
|
||||
}
|
||||
|
|
|
@ -198,6 +198,8 @@ export const statusAPI = async (
|
|||
wasMediaBlockedNSFW = true;
|
||||
res = await fetchConversation(status, event, true);
|
||||
}
|
||||
|
||||
console.log(JSON.stringify(tweet))
|
||||
|
||||
if (tweet.__typename === 'TweetUnavailable') {
|
||||
if (tweet.reason === 'Protected') {
|
||||
|
|
|
@ -20,7 +20,7 @@ export const Constants = {
|
|||
GUEST_TOKEN_MAX_AGE: 3 * 60 * 60,
|
||||
/* Twitter Web App actually uses Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA
|
||||
instead, but accounts marked as 18+ wouldn't show up then */
|
||||
GUEST_BEARER_TOKEN: `Bearer AAAAAAAAAAAAAAAAAAAAAPYXBAAAAAAACLXUNDekMxqa8h%2F40K4moUkGsoc%3DTYfbDKbT3jJPCEVnMYqilB28NHfOPqkca3qaAxGfsyKCs0wRbw`,
|
||||
GUEST_BEARER_TOKEN: `Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA`,
|
||||
GUEST_FETCH_PARAMETERS: [
|
||||
'cards_platform=Web-12',
|
||||
'include_cards=1',
|
||||
|
|
|
@ -59,6 +59,7 @@ export const handleStatus = async (
|
|||
case 404:
|
||||
return returnError(Strings.ERROR_TWEET_NOT_FOUND);
|
||||
case 500:
|
||||
console.log(api);
|
||||
return returnError(Strings.ERROR_API_FAIL);
|
||||
}
|
||||
|
||||
|
|
17
src/fetch.ts
17
src/fetch.ts
|
@ -2,7 +2,13 @@ import { Constants } from './constants';
|
|||
import { generateUserAgent } from './helpers/useragent';
|
||||
import { isGraphQLTweet } from './utils/graphql';
|
||||
|
||||
const API_ATTEMPTS = 16;
|
||||
const API_ATTEMPTS = 3;
|
||||
|
||||
function generateCSRFToken() {
|
||||
const randomBytes = new Uint8Array(160/2);
|
||||
crypto.getRandomValues(randomBytes);
|
||||
return Array.from(randomBytes, byte => byte.toString(16).padStart(2, '0')).join('');
|
||||
}
|
||||
|
||||
export const twitterFetch = async (
|
||||
url: string,
|
||||
|
@ -52,12 +58,9 @@ export const twitterFetch = async (
|
|||
const cache = caches.default;
|
||||
|
||||
while (apiAttempts < API_ATTEMPTS) {
|
||||
const csrfToken = crypto
|
||||
.randomUUID()
|
||||
.replace(
|
||||
/-/g,
|
||||
''
|
||||
); /* Generate a random CSRF token, this doesn't matter, Twitter just cares that header and cookie match */
|
||||
/* Generate a random CSRF token, Twitter just cares that header and cookie match,
|
||||
REST can use shorter csrf tokens (32 bytes) but graphql prefers 160 bytes */
|
||||
const csrfToken = generateCSRFToken();
|
||||
|
||||
const headers: Record<string, string> = {
|
||||
Authorization: Constants.GUEST_BEARER_TOKEN,
|
||||
|
|
Loading…
Add table
Reference in a new issue