HttpRepl
HttpRepl copied to clipboard
The HTTP Read-Eval-Print Loop (REPL) is a lightweight, cross-platform command-line tool that's supported everywhere .NET Core is supported and is used for making HTTP requests to test ASP.NET Core web...
Is it on your roadmap to support authorization headers, and possibly to support OpenID Connect standards based implicit flow authentication through a browser popup?
I put in a PR #73 with a bug fix for the character duplication mentioned in #15 so that it is usable on linux. However, that whole class (InputManager) and...
We need to revisit and clean up MockHttpMessageHandler based on this comment: https://github.com/aspnet/HttpRepl/pull/115#discussion_r307909776 in PR: https://github.com/aspnet/HttpRepl/pull/115
Inspired by #139, I don't recall seeing any validation around this. It's especially interesting in cases where there is a schema object/array with nested schemas applicable to the properties/items.
Currently, there's no way for the `pref set` command to notify other parts of the system that a preference has changed. In a lot of cases, that's ok, because the...
In general, some more polish on the colorization could be helpful in making the output of the tool more readable. This might include (in no particular order): - Better/more colorization/bolding...
It would be nice to be able to see rough timing measurements for the various API calls. I don't believe the intention here is to really have strong metrics on...
In bash (at least), typing `ctrl+r` enters a reverse-i-search mode that allows you to search through your command history based on a search pattern. The use case here could be...
The idea would be to have a command that allows you to save all of the commands you've issues in your session thus far into a file - one that...
Right now, if you execute any of the following almost-legitimate commands: ```console PATCH --help PATCH help PATCH "{'productId': 5}" ``` You just get some generic help text, such as: ```console...