chkp-orsaa
Results
1
issues of
chkp-orsaa
I try to authenticate using service principal client id and secret. I used the following: ``` def credential_provider(): config = Config( host=f"https://{server_hostname}", client_id=databricks_client_id, client_secret=databricks_client_secret) return oauth_service_principal(config) with sql.connect(server_hostname=server_hostname, http_path=http_path, credentials_provider=credential_provider)...