web-dev-qa-db-ja.com

HTTP POSTおよびLinuxでcURLを使用してGET

私はそのためのWebサービスを持っているという点で、Windowsのasp.netでサーバーアプリケーションを持っていました。

cURLコマンドを使用してシェルスクリプトを使用してubuntuでWebサービスを呼び出すにはどうすればよいですか

65
R Square

Linuxは、私たちの生活をずっと楽にする素敵な小さなコマンドを提供します。

GET:

JSONで:

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

with XML:

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

POST:

データを投稿する場合:

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

ファイルのアップロードの場合:

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

RESTful HTTP Post:

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

サイトへのログイン用(auth):

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