This is the HTTP package.
This namespace contains the implementation of the Hypertext Transfer Protocol. The HTTP package itself provides a few very basic convenience methods which may be used in simple applications, but more advanced programs may need to use a custom HTTP client object.
HTTP.get($url: Str)
Convenience method for calling .get()
on the default
client.
- url: Str
HTTP.post($url: Str)
Convenience method for calling .post()
on the default
client.
- url: Str
HTTP methods.
In order to comply, the object must be equal to one of these values.
:GET
- HTTP GET method.:POST
- HTTP POST method.
End of the HTTP package.
This file was generated automatically by the Ferret compiler from HTTP.frt.