Hi I have done that with curl it works fine but when comes to my application when I try with request = HTTPRequest(url, method='POST', body=json.dumps(body), headers=headers) response = await HttpUtils.make_async_request(request, eat_exceptions=False) where URL is https://hec.example.com:8088/services/collector/event and I am passing the token too like headers = {'Authorization': 'Splunk B5A79AAD-D822-46CC-80D1-819F80D7BFB0'} Still I am getting the error of 'SSL:-self-signed certificate in chain' whereas when I try with curl no error.
... View more