response = requests.request("POST", url, verify=False, headers=headers, data=payload)
SSLError: HTTPSConnectionPool(host='dcs.adobedc.net', port=443): Max retries exceeded with url: /collection/d99e6dfcffb0b5aeaec2cf76cd3bc2b9e9c414b0c74a528d13dd3922f7de4fc6 (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:1131)')))
I am trying to make call to any https website api from Azure Databricks notebook using python and I am getting an SSLError.
I have tried to set a verify=false parameter in the call too.