mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
35 lines
924 B
Plaintext
35 lines
924 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# lwp-request
|
|
|
|
> Simple HTTP client.
|
|
> Built with libwww-perl.
|
|
> More information: <https://metacpan.org/pod/lwp-request>.
|
|
|
|
- Make a simple GET request:
|
|
|
|
`lwp-request -m GET {{http://example.com/some/path}}`
|
|
|
|
- Upload a file with a POST request:
|
|
|
|
`lwp-request < {{path/to/file}} -m POST {{http://example.com/some/path}}`
|
|
|
|
- Make a request with a custom user agent:
|
|
|
|
`lwp-request -H 'User-Agent: {{user_agent}} -m {{METHOD}} {{http://example.com/some/path}}`
|
|
|
|
- Make a request with HTTP authentication:
|
|
|
|
`lwp-request -C {{username}}:{{password}} -m {{METHOD}} {{http://example.com/some/path}}`
|
|
|
|
- Make a request and print request headers:
|
|
|
|
`lwp-request -U -m {{METHOD}} {{http://example.com/some/path}}`
|
|
|
|
- Make a request and print response headers and status chain:
|
|
|
|
`lwp-request -E -m {{METHOD}} {{http://example.com/some/path}}`
|