14 lines
432 B
Python
14 lines
432 B
Python
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()) |