我使用Postman发送一个GET请求,URL为“https://www.rfi.fr/cn/“,它可以工作!并且甚至不需要报头。但是当使用Python requests.get(url)时,会返回ConnectionResetError(10054)。我想用Python打开URL“https://www.rfi.fr/cn/“,然后获取新闻。
wkftcu5l1#
添加user-agent头。这是我的工作(<response 200>):
user-agent
<response 200>
import requests session = requests.Session() session.headers.update({'User-Agent': 'Mozilla/5.0'}) url = 'https://www.rfi.fr/cn' r = session.get(url) print(r)
1条答案
按热度按时间wkftcu5l1#
添加
user-agent
头。这是我的工作(<response 200>
):