Replies: 2 comments
-
The command line version of it would be: |
Beta Was this translation helpful? Give feedback.
0 replies
-
This is now possible with #519 merged. vim.g.rest_nvim = {
clients = {
curl = {
opts = {
certificates = {
["someurl.com"] = {
set_certificate_crt = "/path/to/certiciate-file.pem",
set_certificate_key = "/path/to/private-key.pme",
},
},
},
},
},
} See |
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
Uh oh!
There was an error while loading. Please reload this page.
-
I need to test some endpoints that require a client certificate to be included for authentication. How do I include it in rest.nvim? Since it is possible with curl, I suppose it can be done in rest.nvim as well.
Beta Was this translation helpful? Give feedback.
All reactions