R3000
(R3000)
October 29, 2021, 5:23pm
1
Running into certificate trust issues.
SSLError: HTTPSConnectionPool ... [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)')))
This SO post Solve the dreadful certificate issues in Python requests module | by Supratim Samanta | Level Up Coding has a fix like :
requests.get('https://www.google.com', verify=False)
But how do I do that with pystardog?
Thanks,
Radu
stephen
(stephen)
November 5, 2021, 2:12pm
2
Hi Radu,
There's no way in pystardog to pass in the flag to disable SSL certificate verification. That said, there's nothing stopping you from instead using the requests
library directly with the Stardog REST API and passing it in yourself: API Reference | ReDoc
R3000
(R3000)
November 5, 2021, 6:29pm
3
Stephen,
Thank you - HTTP API it is there indeed. But it would be nice to see this available as well in pystardog.
Can you please add this important dev functinality?
Thanks,
Radu
system
(system)
Closed
November 19, 2021, 6:30pm
4
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.