| 1234567 |
- import json
- import run_wp_wb8_api_loop as wb8
- wb8.BASE = "http://127.0.0.1:5005"
- login = wb8.login("UATAdminA", "838257186181189", "1234567890dop")
- status, body = wb8.request("GET", "/api/AidopKanban/home-grid/S8?factoryId=1", token=login["token"])
- print(json.dumps({"status": status, "body": body}, ensure_ascii=False, default=str, indent=2))
|