import requests
url = "https://developers.planet.com/docs/apis/data/reference/#operation/SearchDetail"
payload={}
headers = {
'Authorization': 'api-key some-secret-api-key'
}
response = requests.request("GET", url, headers=headers, data=payload)
status_code = response.status_code
print(status_code)
Asked
Active
Viewed 70 times
0
progmatico
- 4,216
- 1
- 14
- 25
Prabhakar
- 1
- 1
-
Take a look [here](https://stackoverflow.com/a/55777715/7857466). Beaware that certificates are supposed to be checked. – progmatico Jun 12 '21 at 19:25