我正在尝试获取商品类别 ID 列表,以便我可以将它们放入 url 并抓取产品信息。我知道如何将单个值放入键中,例如:
payload = {'catID': 'ID_V2L0_65'}
但是当我有很多 catID 时,我会感到困惑。这是我的一些代码:
navi_info = requests.get('https://shopee.co.id/api/v4/recommend/recommend?bundle=top_sold_product_microsite&limit=20&offset=0')
catIDs = [catID for catID in navi_info.json['data']['sections']['index']['key']]
payload = {'catID': catIDs[0]}
r = requests.get('https://shopee.co.id/top_products', params=payload)
开满天机
相关分类