diff --git a/src/api.ts b/src/api.ts index 90bb46e..5ae648e 100644 --- a/src/api.ts +++ b/src/api.ts @@ -138,9 +138,10 @@ const populateTweetProperties = async ( available for free using api.fxtwitter.com. */ export const statusAPI = async ( status: string, - language: string | undefined + language: string | undefined, + event: FetchEvent ): Promise => { - const conversation = await fetchUsingGuest(status); + const conversation = await fetchUsingGuest(status, event); const tweet = conversation?.globalObjects?.tweets?.[status] || {}; /* Fallback for if Tweet did not load */ diff --git a/src/fetch.ts b/src/fetch.ts index ef9f6c8..ecd8385 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -1,8 +1,11 @@ import { Constants } from './constants'; -export const fetchUsingGuest = async (status: string): Promise => { +export const fetchUsingGuest = async ( + status: string, + event: FetchEvent +): Promise => { let apiAttempts = 0; - let cachedTokenFailed = false; + let newTokenGenerated = false; const tokenHeaders: { [header: string]: string } = { Authorization: Constants.GUEST_BEARER_TOKEN, @@ -16,12 +19,25 @@ export const fetchUsingGuest = async (status: string): Promise => { console.log('Direct?', flags?.direct); - const api = await statusAPI(status, language); + const api = await statusAPI(status, language, event as FetchEvent); const tweet = api?.tweet as APITweet; /* Catch this request if it's an API response */ diff --git a/wrangler.example.toml b/wrangler.example.toml index 7cc6e7c..d4bd0a5 100644 --- a/wrangler.example.toml +++ b/wrangler.example.toml @@ -5,4 +5,7 @@ compatibility_date = "2022-08-17" send_metrics = false [build] -command = "npm run build" \ No newline at end of file +command = "npm run build" + +[miniflare.globals] +TEST = "true" # Will have unicode character errors in headers if not set to true \ No newline at end of file