I'm coding web scrapers using Scrapy. A few sites that I need to access require me to interact with them so I'm making requests using Splash which allows me to do so. This currently works just fine.
To prevent my scrapers from getting blocked, I want the requests to go through a collection of proxy servers, so I used Scrapoxy for this.
The problem I have now is that to the best of my knowledge, the requests flow in the following way :-
Scrapy -> Scrapoxy -> Splash -> Target Website
Instead of :-
Scrapy -> Splash -> Scrapoxy -> Target Website
Is it possible to fix this?
If not, is it possible to use any other headless browser or proxy IP rotator which can solve this issue?