Can someone explain to me what is actually the need to Url-encode data sent in the body part of http requests when using
content-type: application/x-www-form-urlencoded
thanks
|
|
|
By "the need", do you mean "the purpose"? If you're after the purple - it is simply there to tell the server what to expect: URL-encoded key=value pairs. It also allows the server to know what is not coming its way - the likes of multipart/form-data! This allows the server to unambiguously know how to read incoming data. The data is sent as one header (this is also why it has a size limit). As such, you definitely want to avoid stuff like: newlines, colons. In addition to this, you definitely want to escape = in data, so that it doesn't mess with the key=value structure. You also want to escape & for the same reason. URL-encoding does all that - so it only makes sense that whoever designed the HTTP protocol went for it! |
|||||||||
|
|
There are multiple ways to send data to the server in a POST request; URL Encoded data is just one of several possible formats. The client and server have to agree on the format of data in the POST body. URL Form encoded data is the easiest to use because of its universal support. Browsers support it natively. Every programming language allows you to read url encoded post parameters using a familiar syntax. But of course, there is no need to use url form encoded. You can as easily send json or xml encoded POST body. As long as the client and server are in sync, you can even create a totally different encoding and use it. |
|||
|