Parse Query Params From A URL
url = "https://example.com?taco=bell&taco_count=3"
=> "https://example.com?taco=bell&taco_count=3"> URI(url)
=> #<URI::HTTPS https://example.com?taco=bell&taco_count=3>> URI(url).query
=> "taco=bell&taco_count=3"> query_params = Rack::Utils.parse_nested_query(URI(url).query)
=> {"taco"=>"bell", "taco_count"=>"3"}> query_params["taco_count"]
=> "3"Last updated