Files
Python-for-Geeks/Chapter13/nsp/location_services1.py
T
2021-08-02 00:12:53 +04:00

7 lines
212 B
Python

import requests
payload = {}
headers = {}
url = "https://10.52.90.101/rest-gateway/rest/api/v1/location/services"
resp = requests.request("GET", url, headers=headers, data=payload, verify=False)
print(resp.text)