Connect Reactor API with Python
Hello Community,
I am trying to connect and pull data of Adobe Launch using Reactor API in Python.
I created my project in Adobe Developer console and got all credentials (validated the APIs are working in Postman)
Following is my python script:
Line 1:
myHeaders = {All headers required for reactor API}
Line 2:
import requests
res = requests.get("https://reactor.adobe.io/companies/{COMPANY_ID}/properties", headers=myHeaders)
I am getting following error, please help and guide.
SSLError: HTTPSConnectionPool(host='reactor.adobe.io', port=443): Max retries exceeded with url: /companies/{COMPANY_ID}/properties (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain (_ssl.c:1002)')))