Forrest logo
back to context overview

http

List of commands for http:

  • http:tldr:1e408 http: Send form-encoded data.
    $ http --form ${example-org} ${name='bob'} ${profile_picture@'bob-png'}
    try on your machine
    explain this command
  • http:tldr:4b037 http: Send JSON object.
    $ http ${example-org} ${name='bob'}
    try on your machine
    explain this command
  • http:tldr:5131c http: Specify raw request body via `stdin`.
    $ cat ${data-txt} | http PUT ${example-org}
    try on your machine
    explain this command
  • http:tldr:8535a http: Download a URL to a file.
    $ http --download ${example-org}
    try on your machine
    explain this command
  • http:tldr:e8df9 http: Pass a username and password for server authentication.
    $ http --auth ${username:password} ${example-org}
    try on your machine
    explain this command
back to context overview