-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdemo.py
41 lines (34 loc) · 976 Bytes
/
demo.py
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
import os
from configparser import ConfigParser
BASE_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)),'config.ini')
import top.api
conf = ConfigParser()
conf.read(BASE_DIR)
req=top.api.TbkUatmFavoritesGetRequest('https://eco.taobao.com/router/rest')
req.set_app_info(top.appinfo(conf.get('taobao','appkey'),conf.get('taobao','secret')))
req.page_no=1
req.page_size=20
req.fields="favorites_title,favorites_id,type"
req.type=-1
try:
resp= req.getResponse()
print(resp)
except Exception as e:
print(e)
req=top.api.TbkDgOptimusMaterialRequest('https://eco.taobao.com/router/rest')
req.set_app_info(top.appinfo(conf.get('taobao','appkey'),conf.get('taobao','secret')))
req.page_size=100
req.adzone_id=109594100407
req.page_no=1
req.material_id=3756
req.device_value="xxx"
req.device_encrypt="MD5"
req.device_type="IMEI"
req.content_id=323
req.content_source="xxx"
req.item_id=33243
try:
resp= req.getResponse()
print(resp)
except Exception as e:
print(e)