I changed the protocol of my typesense server from...
# community-help
r
I changed the protocol of my typesense server from http to https with self-signed Certificates. Requests from the Browser with typesense js docsearch are still working, command line request with the python API are not working: Max retries exceeded with url: /collections (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate (_ssl.c:997)'))) Is there a way to trust self-signed Certificates in Python API?
k
Not possible with official Typesense client because the underlying http client configuration is not exposed. You can make your own API call with custom http client that is configured to accept self signed certs which are not accepted by default.
👍 1