test-4000.py 889 B

123456789101112131415161718192021222324252627282930313233
  1. import requests
  2. # --- test 获取token ---
  3. # url = 'http://10.10.61.229:9000/token/api'
  4. url = 'http://192.168.131.23:9000/token/api'
  5. data = {
  6. 'username': 'admin', # 用户名
  7. 'password': 'admin', # 密码
  8. }
  9. response = requests.post(url=url, json=data)
  10. code = response.json().get('code')
  11. token = response.headers.get('authorization')
  12. # --- test 4001 获取全部渣包状态数据接口 ---
  13. # url = 'http://10.10.61.229:9000/v5/api'
  14. url = 'http://192.168.131.23:9000/v5/api'
  15. data = {
  16. 'code': 4001, # 接口号
  17. }
  18. response = requests.post(url=url, json=data, headers={'authorization': token})
  19. print(response.json())
  20. """
  21. {
  22. 'code': 0,
  23. 'data': [
  24. {
  25. 'pot_name': 'A.1', # 渣罐别称
  26. 'pot_status': 4, # 渣罐状态 1 空位 2 就绪 3 缓冷(空冷) 4 水冷 5 自冷(水冷) 6 待倒 7 故障
  27. 'pot_number': '1' # 渣罐编号
  28. }
  29. ]
  30. }
  31. """