爬虫Python报403或data为空问题

在爬取B站数据时,部分API是需要cookie才能获取数据的,没有携带则结果可能是code:403或

{"code":0,"message":"0","ttl":1,"data":{}}

比如upstat,需要将标头中的cookie放在爬虫中。

爬虫Python报403或data为空问题_第1张图片

headers['User-Agent'] = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/98.0.4758.102 Safari/537.36'
headers['Host'] = 'api.bilibili.com'
headers['Cookie'] = "xxxxxxxxxxxx"
response = requests.get(api_path, stream=True, headers=headers)

结果正常

{'code': 0, 'message': '0', 'ttl': 1, 'data': {'archive': {'view': 270657}, 'article': {'view': 0}, 'likes': 45846}}

你可能感兴趣的:(Python,爬虫,http,网络协议)