web-dev-qa-db-ja.com

コマンドラインからJSONペイロードを使用してHTTPリクエスト/コールを行う方法は?

コマンドラインからJSON呼び出しを行う最も簡単な方法は何ですか?追加のデータを取得するJSON呼び出しを行うWebサイトがあります。

Request Payload Googleに表示されるChromeは次のようになります。

{"version": "1.1", "method":"progr","id":2,"params":{"call":...} }

これは、(できれば)linuxコマンドラインから呼び出しを行い、JSONコンテンツを取得することに関するものであり、着信JSONデータを解析することではありません。

33
Roalt

データがPOSTされていると仮定して、curlを使用します。

curl -X POST http://example.com/some/path -d '{"version": "1.1", "method":"progr","id":2,"params":{"call":...} }'

GETでデータを取得するだけで、URLパラメータを送信する必要がない場合は、単にcurl http://example.com/some/path

40
nos

Wgetも使用できます。

wget -O- --post-data='{"some data to post..."}' \
  --header='Content-Type:application/json' \
  'http://www.example.com:9000/json'
43
Pius Raeder
curl --request POST \
--url http://localhost:8099/someservice/services/boo \
--header 'authorization: Basic dkfhsdlepwmdseA==' \
--header 'cache-control: no-cache' \
--header 'content-type: application/json' \
--data '{"value": "24.127.1212.123"}'
5
Neels

wgetpost-fileとともに使用することもできます。

wget --post-file=[file] --header=Content-Type:application/json [URL]

コンテンツをファイルに保存すると、コンテンツはpostデータとして送信されます。

1

curl を見ましたか?コマンドラインを介したHTTP GET/POST要求の促進に非常に優れています。

例えば(GETリクエストの場合):

C:\WINDOWS>curl "http://search.Twitter.com/search.json?q=twitterapi&result_type=
popular"
{"results":[{"from_user_id_str":"32316068","profile_image_url":"http://a2.twimg.
com/profile_images/351010682/twitblock_profile_normal.png","created_at":"Thu, 25
 Nov 2010 14:37:46 +0000","from_user":"twitblockapp","id_str":"7805146834669569"
,"metadata":{"result_type":"popular","recent_retweets":10},"to_user_id":null,"te
xt":"blocking and reporting functions are currently failing. @TwitterAPI have be
en notified. http://j.mp/id5w3m","id":7805146834669569,"from_user_id":32316068,"
geo":null,"iso_language_code":"en","to_user_id_str":null,"source":"<a href=&q
uot;http://Twitter.com" rel="nofollow">Tweetie for Mac</a&g
t;"}],"max_id":9607558079713280,"since_id":0,"refresh_url":"?since_id=9607558079
713280&q=twitterapi","results_per_page":15,"page":1,"completed_in":0.012698,"sin
ce_id_str":"0","max_id_str":"9607558079713280","query":"twitterapi"}
0
Jason S