Files
ai_mip/localAPI-main/py-examples/example-query-group.py
2026-01-13 18:59:26 +08:00

11 lines
214 B
Python

import requests
url = "http://local.adspower.net:50325/api/v1/group/list?page=1&page_size=15"
payload={}
headers = {}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)