admin管理员组文章数量:1345070
This code work: (Native python urllib)
from urllib.request import Request, urlopen
req = Request(url='/', headers={'User-Agent': 'Mozilla/5.0'})
status_code = urlopen(req).getcode()
print(status_code) # 200
And this not: (Modern httpx)
import httpx
res = httpx.get('/', headers={'User-Agent': 'Mozilla/5.0'})
print(res.status_code) # 403
Also tried with all request headers from browser, result status code 403
How to get response with httpx?
本文标签: pythonHTTPX response 403Stack Overflow
版权声明:本文标题:python - HTTPX response 403 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743782552a2538085.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论