Risposte:
Linux fornisce un piccolo comando che rende le nostre vite molto più facili.
OTTENERE:
con JSON:
curl -i -H "Accept: application/json" -H "Content-Type: application/json" http://hostname/resource
con XML:
curl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET http://hostname/resource
INVIARE:
Per pubblicare dati:
curl --data "param1=value1¶m2=value2" http://hostname/resource
Per il caricamento di file:
curl --form "fileupload=@filename.txt" http://hostname/resource
Post HTTP RESTful:
curl -X POST -d @filename http://hostname/resource
Per accedere a un sito (auth):
curl -d "username=admin&password=admin&submit=Login" --dump-header headers http://localhost/Login
curl -L -b headers http://localhost/
-H
bandiera può anche essere usata per cancellare i tuoi contenuti come "application / json" quando -X POST