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
Currently, before-try event provides a Request object and use that object to make a request.
It's impossible to modify the body and the query of the request for now because of these properties are read only.
Background is, I want to make a request with arbitrary query strings. This hasn't been supported by current spec. I tried to set the parameter key to an empty string according to this comment. RapiDoc renders well. However, it stills prepend the = symbol when I click "Try". I know that is a correct behaviour but what I hope is to provide a way to modify the url to meet my design.
The text was updated successfully, but these errors were encountered:
We need to replace the url for a special use case. I've tested the new code at it works as expected (although I had to change the version in package.json from 9.3.4.beta to 9.3.4-beta.0 because npm complained with invalid version).
@mrin9 do you plan to include this feature in the next release? Any ETA for that?
Currently, before-try event provides a
Request
object and use that object to make a request.It's impossible to modify the body and the query of the request for now because of these properties are read only.
Background is, I want to make a request with arbitrary query strings. This hasn't been supported by current spec. I tried to set the parameter key to an empty string according to this comment. RapiDoc renders well. However, it stills prepend the
=
symbol when I click "Try". I know that is a correct behaviour but what I hope is to provide a way to modify the url to meet my design.The text was updated successfully, but these errors were encountered: