UNIX/Soft/curl
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
-wget的使い方ができるツールだが、REST APIの操作で使いやす...
*基本 [#ad010bc7]
**POST [#f1c2251e]
curl -X POST -d "key1=value1" https://www.example.com"
PARAM="hoge=fuga"
curl -X POST -d $PARAM URL
**応用 [#a81d7963]
|Digest認証|curl --digest -u ID:PW URL|
-指定されたURLを標準出力に表示
curl http://www.google.com
-リダイレクト(302)に対応したオプション。TOPページはリダイ...
curl -L http://www.google.com
-認証
crul -u ID:PW http://URL/
-ステータスコードをチェック
curl -o /dev/null --silent --head --write-out '%{http_co...
-SSLページでlocalhostに対応する
curl -H 'Host:tools.rutake.com' "https://tools.rutake.co...
終了行:
-wget的使い方ができるツールだが、REST APIの操作で使いやす...
*基本 [#ad010bc7]
**POST [#f1c2251e]
curl -X POST -d "key1=value1" https://www.example.com"
PARAM="hoge=fuga"
curl -X POST -d $PARAM URL
**応用 [#a81d7963]
|Digest認証|curl --digest -u ID:PW URL|
-指定されたURLを標準出力に表示
curl http://www.google.com
-リダイレクト(302)に対応したオプション。TOPページはリダイ...
curl -L http://www.google.com
-認証
crul -u ID:PW http://URL/
-ステータスコードをチェック
curl -o /dev/null --silent --head --write-out '%{http_co...
-SSLページでlocalhostに対応する
curl -H 'Host:tools.rutake.com' "https://tools.rutake.co...
ページ名: