You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get the following error:
self._sslobj.do_handshake()
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED]
certificate verify failed: unable to get local issuer certificate (_ssl.c:1056)
I am able to use the api on the portal (/gallery/api-docs/#!/workflows.json/GetStudioAppsGET)
but when i try using python from my machine, i see the above error.
We have installed alteryx in a VM in Azure and I'm trying to run the python code on my machine while connected to the company network.
Can you please help?
Thanks,
Srikanth
The text was updated successfully, but these errors were encountered:
Hi @johnkabler,
I tried using the below approach asper your PyRyx code: (idea is to try just one component first: get workflows in subscription)
client_key = 'xxxxxxxxxxxxxxxxxxxxxxxxx'
client_secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
gallery_url = "https://name.corp.company.com:443/gallery/api/v1/workflows/subscription/"
queryoauth = OAuth1(client_key, client_secret, signature_type='query')
requests.get(gallery_url, auth=queryoauth)
I get the following error:
self._sslobj.do_handshake()
ssl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED]
certificate verify failed: unable to get local issuer certificate (_ssl.c:1056)
I am able to use the api on the portal (/gallery/api-docs/#!/workflows.json/GetStudioAppsGET)
but when i try using python from my machine, i see the above error.
We have installed alteryx in a VM in Azure and I'm trying to run the python code on my machine while connected to the company network.
Can you please help?
Thanks,
Srikanth
The text was updated successfully, but these errors were encountered: