I'm trying to crawl a website with scrapy using the request object. I connect to the internet through a proxy that requires authentication, and this authentication prevents me from crawling the website:
DEBUG: Crawled (400) <GET http://auth4/robots.txt> (referer: None)
How can I authenticate in the proxy or skip it to reach the website?
Thanks!!