使用 Python 请求获取页面 404,但我可以通过浏览器访问该页面没有问题。我可以访问与此页面格式完全相同的其他页面,并且它们加载没有问题。
已经尝试过更改标题但没有运气。
我的代码:
string_page = str(page)
with requests.Session() as s:
resp = s.get('https://bscscan.com/token/generic-tokentxns2?m=normal&contractAddress=0x470862af0cf8d27ebfe0ff77b0649779c29186db&a=&sid=f58c1cdefacc680b799412c7645ed7f7&p='+string_page)
page_info = str(resp.text)
print(page_info)
我也尝试过使用 urllib 并且发生了同样的事情