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
It's possible for a request to contain a parameter with no value. For example, http://localhost/test?foo contains the parameter foo with no value. You can also post a parameter with no value, for example curl -X POST http://localhost:8080/ -d 'foo='.
Neither the curl request snippet nor the HTTP request snippet handle valueless parameters correctly. In both cases the parameters are omitted entirely.
The text was updated successfully, but these errors were encountered:
It's possible for a request to contain a parameter with no value. For example,
http://localhost/test?foo
contains the parameterfoo
with no value. You can also post a parameter with no value, for examplecurl -X POST http://localhost:8080/ -d 'foo='
.Neither the curl request snippet nor the HTTP request snippet handle valueless parameters correctly. In both cases the parameters are omitted entirely.
The text was updated successfully, but these errors were encountered: