Gabe Villasana
09/01/2023, 7:27 PMSean Williams
09/01/2023, 10:12 PMimport requests
url = "<https://api.doppler.com/v3/configs/config/secret?project=PROJECT_NAME&config=CONFIG_NAME&name=SECRET_NAME>"
headers = {"accept": "application/json"}
response = requests.get(url, headers=headers)
print(response.text)
Ethan Veres
09/05/2023, 3:44 PM