Reputation: 334
I'm working on some interesting APIs that have a "?" in their path, like so:
/api/?other/stuff/here
However, if I type "?" in the request URL in Paw, it automatically moves my cursor into the query parameter fields. Is there a way to disable this? I'm forced to use postman at the moment to work around this, which is less than ideal.
Upvotes: 2
Views: 299
Reputation: 3481
As mentioned before, using %3F
should work nicely!
Another, more generic way is to use the URL-Encode dynamic value:
?
) in the Input field. You should see the preview of the encoded value at the bottom of the popup.Upvotes: 1