When adding a ":" symbol in the URL, an error occurs during the request #621
Labels
bug
Something isn't working
reviewing 👀
Undergoing manual audit to determine if issue should still be active
Documentation link
buildPostmanRequest Github Docs
baseUrl: https://api.user.server ↗
path: /User/{id}/page:get
Compiled path: /User/:id/page:get
The variable {id} has been transformed to ":id" and the constant ":get" to a similar format, where "id" is a variable and ":get" is a fixed parameter.
Assuming the id is 9527,
When clicking "Send API Request",
The desired outcome is:
https://api.user.server/User/:9527/page:get
However, the current result is:
https://api.user.server/
The path content is missing.
I would like to add ":" in the path to support filling without the need for "/" and ensure normal request functionality.
The text was updated successfully, but these errors were encountered: