You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When connected to httprepl this results in the following output
https://localhost:5001/api> ls
. []
.. []
v{version} []
https://localhost:5001/api> cd v1
Warning: The '/api/v1' endpoint is not present in the OpenAPI description
/api/v1 []
https://localhost:5001/api/v1> ls
. []
.. []
This only affects the discoverability as the calls can still be made and it is possible to work around the issue by navigating to the placeholder to discover endpoints e.g.
https://localhost:5001/api> cd v{version}
/api/v{version} []
https://localhost:5001/api/v{version}> ls
. []
.. []
weatherforecast [GET|POST]
The text was updated successfully, but these errors were encountered:
When an API includes versioning in the URL this prevents httprepl listing endpoints.
With an OpenAPI description of
When connected to httprepl this results in the following output
This only affects the discoverability as the calls can still be made and it is possible to work around the issue by navigating to the placeholder to discover endpoints e.g.
The text was updated successfully, but these errors were encountered: