HTTPRequest¶
Builds a symbolic HTTP request object (no network access is performed
until the request is sent with URLRead).
The one-argument form canonicalizes to HTTPRequest[url, <||>]:
Properties can be extracted from the request object:
A list of property specifications yields an association.
The Method property can also be given as a symbol:
$ wo 'req = HTTPRequest["https://www.wikipedia.org/"]; req[{"Scheme", "Domain", Method}]'
<|Scheme -> https, Domain -> www.wikipedia.org, Method -> GET|>
The URL is split into URLParse-style components: