2019-05-29 16:47:54 +01:00
|
|
|
# curl
|
|
|
|
|
|
|
|
> Trasferisci dati da o ad un server.
|
|
|
|
> Supporta molti protocollo, tra cui HTTP, FTP e POP3.
|
2021-02-07 20:27:41 +00:00
|
|
|
> Maggiori informazioni: <https://curl.se>.
|
2019-05-29 16:47:54 +01:00
|
|
|
|
|
|
|
- Scarica il contenuto di un URL in un file:
|
|
|
|
|
2021-05-04 10:37:07 +01:00
|
|
|
`curl {{http://example.com}} --output {{nome_file}}`
|
2019-05-29 16:47:54 +01:00
|
|
|
|
|
|
|
- Scarica un file, salvando l'output con lo stesso nome indicato nell'URL:
|
|
|
|
|
2021-05-04 10:37:07 +01:00
|
|
|
`curl --remote-name {{http://example.com/nome_file}}`
|
2019-05-29 16:47:54 +01:00
|
|
|
|
|
|
|
- Scarica un file, seguendo reindirizzamenti, e continuando automaticamente (riprendendo) un trasferimento precedente:
|
|
|
|
|
2021-05-04 10:37:07 +01:00
|
|
|
`curl --remote-name --location --continue-at - {{http://example.com/nome_file}}`
|
2019-05-29 16:47:54 +01:00
|
|
|
|
|
|
|
- Invia dati form-encoded (richiesta POST di tipo `application/x-www-form-urlencoded`):
|
|
|
|
|
2021-05-04 10:37:07 +01:00
|
|
|
`curl --data {{'nome=mario'}} {{http://example.com/form}}`
|
2019-05-29 16:47:54 +01:00
|
|
|
|
|
|
|
- Invia una richiesta con un header aggiuntivo, utilizzando un metodo HTTP personalizzato:
|
|
|
|
|
2021-05-04 10:37:07 +01:00
|
|
|
`curl --header {{'X-Mio-Header: 123'}} --request {{PUT}} {{http://example.com}}`
|
2019-05-29 16:47:54 +01:00
|
|
|
|
|
|
|
- Invia dati in formato JSON, specificando l'header content-type appropriato:
|
|
|
|
|
2021-05-04 10:37:07 +01:00
|
|
|
`curl --data {{'{"nome":"mario"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/utenti/1234}}`
|
2019-05-29 16:47:54 +01:00
|
|
|
|
|
|
|
- Utilizza un nome utente ed una password per l'autenticazione con il server:
|
|
|
|
|
2021-05-04 10:37:07 +01:00
|
|
|
`curl --user utente:password {{http://example.com}}`
|
2019-05-29 16:47:54 +01:00
|
|
|
|
|
|
|
- Utilizza un certificato ed una chiave per una risorsa, ignorando la validazione dei certificati:
|
|
|
|
|
|
|
|
`curl --cert {{client.pem}} --key {{chiave.pem}} --insecure {{https://example.com}}`
|