rest.nvim
rest.nvim copied to clipboard
feat: interpret auth tokens
Implement Basic and Digest authorization tokens which are both supported in intellij's http client.
Fixes #483
- [x] Implement
Basicauthorization - [ ] Implement
Digestauthorization- [ ] Refactor to make chained requests possible
- [ ] Refactor to correctly parse chained response (trace)
- [ ] Actually implement the
Digestauthorization.
Edit: add todos to show progress
Basic is easy, but implementing Digest seems to require some work as rest.nvim needs to send multiple requests in same go.
I think Basic is way more common that Digest - any chance we could go ahead and merge the Basic code path and come back to do Digest?