Parse http parameters from a query string. This includes unescaping of url-encoded values.
parse_query(query)
For http GET requests, the query string is specified
in the URL after the question mark. For http POST or PUT requests, the query
string can be used in the request body when the Content-Type
header
is set to application/x-www-form-urlencoded
.
q <- "foo=1%2B1%3D2&bar=yin%26yang"
parse_query(q)
#> $foo
#> [1] "1+1=2"
#>
#> $bar
#> [1] "yin&yang"
#>