codecs
codecs copied to clipboard
Add support for url encoded bodies
This:
name=Tyler&city=SLC
Should become an object like this:
{
name: "Tyler",
city: "SLC"
}
So, basically, URLEncoded->JSON? When would this be used?
HTML forms post data in URL encoded format (i.e. name=Tyler&city=SLC). It would be good if we added a codec to support this type too. Mime type would be application/x-www-form-urlencoded
Simple enough. Let's do it.