will give it a try and come back with the results. Thanks !Whenever CloudFlare sticks a gate in my way I just use this 3rd party API to get past: https://scrapeops.io/web-scraping-playbook/how-to-bypass-cloudflare/
I'm sure it's perfectly doable in python itself but this way I don't have to maintain proxy health and slog through javascript parsing.
not only cookies if WAF has strict policies. I’d just try to use a real browser under Python’s control (selenium or whatever)Hello, I want to make a login request to an API and I keep getting blocked by CF. Is there a way to bypass this? I know its something with the cookies but I am not sure what...
try using "undetected-chromedriver" package, it prevent your browser from being detected as an automation browserHello, I want to make a login request to an API and I keep getting blocked by CF. Is there a way to bypass this? I know its something with the cookies but I am not sure what...
not only cookies if WAF has strict policies. I’d just try to use a real browser under Python’s control (selenium or whatever)
thanks for the advide, managed to do it with automated browsers. Now I want to skip the browser and only do it trough API requests. thats why I have those issuestry using "undetected-chromedriver" package, it prevent your browser from being detected as an automation browser
The curl-impersonate software might be of usethanks for the advide, managed to do it with automated browsers. Now I want to skip the browser and only do it trough API requests. thats why I have those issues