在Python 3中阻止了简单的获取/发布请求,但在python 2中没有阻止
我正在使用python 3开发一个简单的Web scraper,但是当我发送get或post请求时,响应为403。尽管在python 2中工作正常。我在两个版本中都使用了相同版本的请求库。我也尝试过,Verify=False/True但两个版本的区别仍然存在。 要求= 2.22.0 证书= 2019.9.11 from requests import get url = 'https://www.gamestop.com/' header = { 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'Accept-Encoding': 'gzip, deflate, br', 'Accept-Language': 'en-US,en;q=0.5', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:56.0) Gecko/20100101 Firefox/56.0', 'DNT': '1', 'Upgrade-Insecure-Requests': '1', 'Connection': 'keep-alive', 'Host': 'www.gamestop.com' } res = get(url, headers=header, verify=False).status_code print(res) …