【发布时间】:2021-06-08 16:44:28
【问题描述】:
我正在尝试使用 python 抓取 shopee 商品信息。
由于它使用 ajax,我试图从以下位置提取项目信息:https://shopee.com.my/api/v2/item/get?itemid=5859069631&shopid=206039726
经过几次请求,我发现它响应的 json 原来是假值(例如它的实际评分是 4.78 但它返回的是 0.24)。
我尝试通过更改标头和 ip/proxy 来解决此问题,但仍然无法正常工作。
有没有其他方法可以解决这个问题?
def get_info(url,itemurl):
requests.adapters.DEFAULT_RETRIES = 5
s = requests.session()
s.keep_alive = False
try:
fake_ua=UserAgent()
headers = {'User-Agent':fake_ua.random,
'Accept': '*/*',
'Accept-Language': 'en-US,en;q=0.5',
'X-Shopee-Language': 'en',
'X-Requested-With': 'XMLHttpRequest',
'X-API-SOURCE': 'pc',
'If-None-Match-': '55b03-2ff39563c299cbdc937f8ab86ef322ab',
'DNT': '1',
'Referer': referer,
'TE': 'Trailers'}
ip = get_daili()
proxies = {"proxies":{"https":ip}}
response = requests.get(url, headers = headers, proxies = proxies, verify=False)
#response = requests.request("GET", url, headers=headers, data=payload)
if response.status_code == 200:
shop_info = response.json()
except requests.ConnectionError as e:
print(f' {url} error', e.args)
shop_name = shop_info['data']['name']
followers = shop_info['data']['follower_count']
ratinggood = shop_info['data']['rating_good']
ratingbad = shop_info['data']['rating_bad']
ratingnormal = shop_info['data']['rating_normal']
try:
fake_ua=UserAgent()
headers = {'User-Agent':fake_ua.random,
'Accept': '*/*',
'Accept-Language': 'en-US,en;q=0.5',
'X-Shopee-Language': 'en',
'X-Requested-With': 'XMLHttpRequest',
'X-API-SOURCE': 'pc',
'If-None-Match-': '55b03-2ff39563c299cbdc937f8ab86ef322ab',
'DNT': '1',
'Referer': referer,
'TE': 'Trailers'}
ip = get_daili()
proxies = {"proxies":{"https":ip}}
response = requests.get(itemurl, headers = headers, proxies = proxies, verify=False)
#response = requests.request("GET", itemurl, headers=headers, data=payload)
if response.status_code == 200:
item_info = response.json()
except requests.ConnectionError as e:
print(f' {url} error', e.args)
#print(json.dumps(item_info, indent=4))
print(itemurl)
【问题讨论】:
标签: html ajax web-scraping python-requests