1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
| import requests
headers = { 'User-Agent': 'okhttp/4.9.1', 'Content-Type': 'application/x-www-form-urlencoded', 'authorization': 'OAuth api_sign=c551d27c3ec7a539d030b835ab29007706fd9672', 'x-vip-host': 'mapi.appvipshop.com', }
data = { 'api_key': '23e7f28019e8407b98b84cd05b5aef2c', 'app_name': 'shop_android', 'app_version': '7.83.3', 'bigSaleTagIds': '', 'brandIds': '', 'brandStoreSns': '', 'categoryId': '', 'channelId': '1', 'channel_flag': '0_1', 'client': 'android', 'client_type': 'android', 'darkmode': '0', 'deeplink_cps': '', 'device_model': 'Google Pixel 4 XL', 'did': '0.0.8210935aac88ed2c795168a927fbc377.b54cd1', 'elder': '0', 'extParams': '{"priceVer":"2","mclabel":"1","cmpStyle":"1","statusVer":"2","ic2label":"1","video":"2","uiVer":"2","preheatTipsVer":"4","floatwin":"1","superHot":"1","exclusivePrice":"1","router":"1","coupons":"1","needVideoExplain":"1","rank":"2","needVideoGive":"1","bigBrand":"1","couponVer":"v2","videoExplainUrl":"1","live":"1","sellpoint":"1","reco":"1","vreimg":"1","search_tag":"2","tpl":"1","stdSizeVids":"","labelVer":"2"}', 'fdc_area_id': '103101101113', 'functions': 'RTRecomm,flagshipInfo,feedback,otdAds,zoneCode,slotOp,survey,hasTabs,floaterParams', 'harmony_app': '0', 'harmony_os': '0', 'headTabType': 'all', 'height': '2984', 'isMultiTab': '0', 'keyword': '洗面奶', 'lastPageProperty': '{"isBgToFront":"0","suggest_text":"洗面奶","scene_entry_id":"-99","refer_page_id":"page_te_globle_classify_search_1709112203190","text":"洗面奶","tag":"1","module_name":"com.achievo.vipshop.search","type":"all","typename":"全部","is_back_page":"0"}', 'maker': 'GOOGLE', 'mars_cid': 'ed0f0e40-4788-324b-8000-79a11b44f6ee', 'mobile_channel': 'oziq7dxw:::', 'mobile_platform': '3', 'net': 'WIFI', 'operator': '45406', 'os': 'Android', 'osv': '10', 'otddid': '', 'other_cps': '', 'page_id': 'page_te_commodity_search_1709112205099', 'phone_model': 'pixel 4 xl', 'priceMax': '', 'priceMin': '', 'props': '', 'province_id': '103101', 'referer': 'com.achievo.vipshop.search.activity.TabSearchProductListActivity', 'rom': 'Dalvik/2.1.0 (Linux; U; Android 10; Pixel 4 XL Build/QQ3A.200805.001)', 'sd_tuijian': '0', 'service_provider': '45406', 'session_id': 'ed0f0e40-4788-324b-8000-79a11b44f6ee_shop_android_1709111748547', 'skey': '6692c461c3810ab150c9a980d0c275ec', 'sort': '0', 'source': 'app', 'source_app': 'android', 'standby_id': 'oziq7dxw:::', 'sys_version': '29', 'timestamp': '1709112205', 'union_mark': 'blank&_&blank&_&oziq7dxw:::&_&blank&_&blank', 'vipService': '', 'warehouse': 'VIP_SH', 'width': '1440', }
response = requests.post( 'https://mapi.appvipshop.com/vips-mobile/rest/shopping/search/product/list/v1', headers=headers, data=data, )
print(response.json())
|