Respuestas:
Linux proporciona un pequeño y agradable comando que nos hace la vida mucho más fácil.
OBTENER:
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
ENVIAR:
Para publicar datos:
curl --data "param1=value1¶m2=value2" http://hostname/resource
Para cargar archivos:
curl --form "fileupload=@filename.txt" http://hostname/resource
Publicación HTTP RESTful:
curl -X POST -d @filename http://hostname/resource
Para iniciar sesión en un sitio (auth):
curl -d "username=admin&password=admin&submit=Login" --dump-header headers http://localhost/Login
curl -L -b headers http://localhost/
-H
bandera también se puede usar para eliminar su contenido como "aplicación / json" al publicar datos con -X POST