-
-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
infinite 503 problem cloudflare page #180
Comments
@linkkader have you found a solution? My scenario is a bit different though, I need to solve a challenge like this: but even if I solve it manually, I am stuck in an infinite redirection loop. Cloudflare seems to detect the chromium instance because I am running puppeteer locally so the IP should be safe, right? I have tried to launch puppeteer with the await page.setJavaScriptEnabled(true);
await page.setUserAgent(
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',
);
await page.setExtraHTTPHeaders({
'Accept-Language': 'en-US,en;q=0.9',
}); |
@Wizzel1 yes there is a ploblem with StealthPlugin() in my case i solve it by directly modify it |
@linkkader thats great, would you mind sharing your modifications? |
@Wizzel1 @linkkader any update ? |
@Zhairgling Unfortunately not |
@Wizzel1 @Zhairgling you can check here the modification i add |
working for me. Thanks |
@linkkader Sorry for my late answer. Your PR did not work for me, unfortunately. I had to set the pages userAgent to make it work in my case. page = await browser.newPage();
await page.setUserAgent(
'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/110.0',
); |
hi i always stuck on this cloudflare page https://anime-flix.net/
The text was updated successfully, but these errors were encountered: