Hello, I am sending a request using hasksi, my code was working yesterday but it is not working today, the responses I receive are like this.
const response = await hasksi.get(
`xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx`,
{
proxy,
headers: {
accept:
'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7',
'accept-encoding': 'gzip, deflate, br, zstd',
'accept-language': 'en-US,en;q=0.9,tr;q=0.8',
'cache-control': 'no-cache',
dnt: '1',
host: 'xxxxxxxxxxxxxxx',
pragma: 'no-cache',
'sec-ch-ua': `"Not/A)Brand";v="8", "Chromium";v="126", "Google Chrome";v="126"`,
'sec-ch-ua-mobile': '?0',
'sec-ch-ua-platform': `"macOS"`,
'sec-fetch-dest': 'document',
'sec-fetch-mode': 'navigate',
'sec-fetch-site': 'none',
'sec-fetch-user': '?1',
'upgrade-insecure-requests': '1',
referer: `xxxxxxxxxxxxxxxxxxxx`,
},
},
);
console.log(response.text())
return response;
Please help me