Replies: 1 comment
-
That library is maintained by others. You could try checking the docs of it, to see if there's a method you can use. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using hyper-tls library to build a https client and meet
hyper::Error(Connect, Custom { kind: Other, error: Custom { kind: InvalidData, error: InvalidCertificate(UnknownIssuer) } })
error when using it to access a existing system via token.We only have token for the client side, does the client can turn off certificate checking? Do we have any example for how to disable certificate verification.
Following is my code:
I also test the following code to set custom certificate verifier. But got
500 Internal Server Error
, I am sure the token and RUL is correct in my code ,curl -k
command works well with the token and URL.Beta Was this translation helpful? Give feedback.
All reactions