vortex / src /modules /leetcode /constants.ts
anujjoshi3105's picture
first commit
3d23b0f
raw
history blame contribute delete
708 Bytes
export const LEETCODE_API_URL = 'https://leetcode.com/graphql';
export const LEETCODE_HEADERS = {
'authority': 'leetcode.com',
'accept': '*/*',
'accept-language': 'en-US,en;q=0.9',
'content-type': 'application/json',
'origin': 'https://leetcode.com',
'referer': 'https://leetcode.com/',
'sec-ch-ua': '"Not_A Brand";v="8", "Chromium";v="120", "Google Chrome";v="120"',
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': '"Windows"',
'sec-fetch-dest': 'empty',
'sec-fetch-mode': 'cors',
'sec-fetch-site': 'same-origin',
'user-agent':
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',
};