🖥
curl request GET method with RequestBody ( --data )( GET にリクエストボディは
How
GET でリクエストを送り、なおかつ --data を指定すれば良いようだ
Specify GET request and --data both
curl --request GET https://example.com --data 'foo=bar'
curl -X GET https://example.com -d 'foo=bar'
result
クライアントはRequestBodyを送って良いが、サーバーは無視するという仕様らしいと小耳に挟んだ
$ curl -X GET https://example.com -d 'foo=bar'
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>400 - Bad Request</title>
</head>
<body>
<h1>400 - Bad Request</h1>
</body>
</html>
参考
Original by Github issue
チャットメンバー募集
何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。
公開日時
2020-04-15
Discussion