YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* curl.exeに渡すPOSTデータで予期せぬ引用符の展開を防ぐ [#...
** 変数にPOSTデータを入れておく (PowerShell) [#ofb6a0bd]
$json = @'
{
"foo": 1,
"bar": [1, 2, 3]
}
'@
$json | curl.exe -H "Content-Type: application/json" -XP...
- -d@-を指定すると標準入力を読み取る
- ただこの方法だと日本語で問題が起きる気がする
** ファイルにPOSTデータを書いておく [#xa297cee]
notepad.exe test.json
curl.exe -H "Content-Type: application/json" -XPOST http...
** 参考 [#bf084317]
- https://stackoverflow.com/questions/4514199/how-to-send...
- https://curl.haxx.se/docs/manpage.html
終了行:
* curl.exeに渡すPOSTデータで予期せぬ引用符の展開を防ぐ [#...
** 変数にPOSTデータを入れておく (PowerShell) [#ofb6a0bd]
$json = @'
{
"foo": 1,
"bar": [1, 2, 3]
}
'@
$json | curl.exe -H "Content-Type: application/json" -XP...
- -d@-を指定すると標準入力を読み取る
- ただこの方法だと日本語で問題が起きる気がする
** ファイルにPOSTデータを書いておく [#xa297cee]
notepad.exe test.json
curl.exe -H "Content-Type: application/json" -XPOST http...
** 参考 [#bf084317]
- https://stackoverflow.com/questions/4514199/how-to-send...
- https://curl.haxx.se/docs/manpage.html
ページ名: