test
This commit is contained in:
parent
b9f30cfb21
commit
626c6527f1
|
|
@ -0,0 +1,14 @@
|
|||
import requests
|
||||
|
||||
url = "https://taobao-tmall-data-service.p.rapidapi.com/Rate/MobileWDetailGetItemRates.ashx"
|
||||
|
||||
querystring = {"num_iid":"746049693328","page_num":"1","sort":"2","type":"all"}
|
||||
|
||||
headers = {
|
||||
"x-rapidapi-key": "021bbdbeb3mshe153ebe54bf02bfp1ddd7cjsn726b52350dd8",
|
||||
"x-rapidapi-host": "taobao-tmall-data-service.p.rapidapi.com"
|
||||
}
|
||||
|
||||
response = requests.get(url, headers=headers, params=querystring)
|
||||
|
||||
print(response.json())
|
||||
Loading…
Reference in New Issue