> using HTTP GET with a request body is a bad idea, as for example users behind a corporate firewall or a different browser may be unable to use your website. So is using QUERY requests for quite some time from now.
Yeah, query seems just GET with a body. No difference in protocol nor behavior
The new HTTP QUERY method explained
31–40 of 179 posts
Re: The new HTTP QUERY method explained
#32We should have just added optional body support for GET requests. So much simpler...
Re: The new HTTP QUERY method explained
#33> using HTTP GET with a request body is a bad idea, as for example users behind a corporate firewall or a different browser may be unable to use your website. So is using QUERY requests for quite some time from now.
405 Method Not Allowed is trivial to fall back to POST. How do you know the GET request behaved incorrectly?
Re: The new HTTP QUERY method explained
#34A whole new method whose semantics don't really fit with the others is.. An odd way forward.
Re: The new HTTP QUERY method explained
#35Body is already optional with GET. Proxies aren't supposed to touch it or assign meaning to it; it's between the client and the end server. A whole new method whose semantics don't really fit with the others is.. An odd way forward.
Re: The new HTTP QUERY method explained
#36Body is already optional with GET. Proxies aren't supposed to touch it or assign meaning to it; it's between the client and the end server. A whole new method whose semantics don't really fit with the others is.. An odd way forward.
RFC 9110 states:
> [..] content received in a GET request has no generally defined semantics, cannot alter the meaning or target of the request [..]
> A client SHOULD NOT generate content in a GET request [..]
Re: The new HTTP QUERY method explained
#37"Using GET with a Body works"
Seems like this is going everyone's head. You're not supposed to use GET with a Body, this is a hack, therefore having an explicit method makes sense.
Just because it works, doesn't mean its the right way
Re: The new HTTP QUERY method explained
#38Re: The new HTTP QUERY method explained
#39> using HTTP GET with a request body is a bad idea, as for example users behind a corporate firewall or a different browser may be unable to use your website. So is using QUERY requests for quite some time from now.
Yeah, query seems just GET with a body. No difference in protocol nor behavior
Re: The new HTTP QUERY method explained
#40Body is already optional with GET. Proxies aren't supposed to touch it or assign meaning to it; it's between the client and the end server. A whole new method whose semantics don't really fit with the others is.. An odd way forward.