I'm getting an the following error after retry when trying to crawl a website.
[<twisted.python.failure.Failure OpenSSL.SSL.Error: [('SSL routines', 'ssl3_check_cert_and_algorithm', 'dh key too small')]>]
I tried with every SSL method available in Scrapy with similar result. When I go to the site in Chrome it seems the page is insecure (broken HTTPS), but I still can bypass the error. Same behaviour using python requests (I can get the site content by setting verify to False).
Is there any workaround? Can't I just turn off SSL validations the way I do in python requests?
P.S. Share the site URL makes no sense since it only allows requests from whitelisted IPs.