web-dev-qa-db-fra.com

HTTP POST et GET utilisant cURL sous linux

J'avais une application serveur dans asp.net dans Windows en ce sens que j'avais un service Web pour cela.

comment puis-je appeler un service Web à Ubuntu à l'aide d'un script Shell à l'aide de la commande cURL

62
R Square

Linux fournit une petite commande agréable qui simplifie grandement nos vies.

GET:

avec JSON:

curl -i -H "Accept: application/json" -H "Content-Type: application/json" http://hostname/resource

avec XML:

curl -H "Accept: application/xml" -H "Content-Type: application/xml" -X GET http://hostname/resource

POST:

Pour l'enregistrement de données:

curl --data "param1=value1&param2=value2" http://hostname/resource

Pour le téléchargement de fichiers:

curl --form "[email protected]" http://hostname/resource

Message HTTP RESTful:

curl -X POST -d @filename http://hostname/resource

Pour vous connecter à un site (auth):

curl -d "username=admin&password=admin&submit=Login" --dump-header headers http://localhost/Login
curl -L -b headers http://localhost/
101
Amith Koujalgi