Hi deepakc and all, took a while but I finally got around to solve this, even if in a far from elegant way. The error message appears to indeed belong to the certification process of AOB like deepakc mentioned. It's sort of a check if your app uses the best-practices or has risks etc. However, this is unlikely to have been the cause for why I wasn't able to get my data, despite my instance being able to connect to the internet. However, there is one simple workaround: --> Simply set the "verify" parameter in your http-request to "false". E.g: response = helper.send_http_request("<your api link here>, "GET", parameters=None, payload=None, headers=headers, cookies=None, verify=False, cert=None, timeout=None, use_proxy=True) It's a little ugly solution but for test-purposes it does the job and I was finally able to receive the data from my API-Point. This is probably not adivsable for productive systems or security reasons, though. Thanks for the helpful input though and everyone else have fun while splunking!
... View more