データが 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
を実行するだけです。
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"}'
wget
を使用できます post-file
で
wget --post-file=[file] --header=Content-Type:application/json [URL]
コンテンツをファイルに保持することができ、コンテンツは post
として送信されます
wget も使用できます:
wget -O- --post-data='{"some data to post..."}' \
--header='Content-Type:application/json' \
'http://www.example.com:9000/json'
wget
を呼び出す オプション -O
で -
を提供する (間のスペースは無視されるので、-O -
のように書くこともできます) ) その値は wget
を引き起こすため、 HTTP 応答をファイルではなく標準出力に直接出力します。その長いオプション名は --output-document=file
です .