HTTP::Request GET
examples/http_client/http_request_get.cr
require "http" req = HTTP::Request.new("GET", "https://code-maven.com/page?name=Foo&email=foo@bar.com") p! req p req.resource p req.query_params p req.body
require "http" req = HTTP::Request.new("GET", "https://code-maven.com/page?name=Foo&email=foo@bar.com") p! req p req.resource p req.query_params p req.body