11 lines
214 B
Python
11 lines
214 B
Python
|
|
import requests
|
||
|
|
|
||
|
|
url = "http://local.adspower.net:50325/api/v1/user/list?page=1&page_size=100"
|
||
|
|
|
||
|
|
payload={}
|
||
|
|
headers = {}
|
||
|
|
|
||
|
|
response = requests.request("GET", url, headers=headers, data=payload)
|
||
|
|
|
||
|
|
print(response.text)
|