Handbook
Glossary
POST requests with the HTTP client
HTTP client
Prev:
GET requests with the HTTP client
Next:
PUT requests with the HTTP client
Basic usage involves passing post data and a
url
, and getting a
response
and data back:
http-post
( post-data url -- response data )
http-post*
( post-data url -- response data )
Advanced usage involves constructing a
request
, which allows
HTTP cookies
and
HTTP headers
to be set:
<post-request>
( post-data url -- request )
Both words take a post data parameter; see
HTTP client post data
.