🖥

curl request GET method with RequestBody ( --data )( GET にリクエストボディは

2023/09/01に公開

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>

参考

cURLでbody付きのGETリクエスト - Qiita

Original by Github issue

https://github.com/YumaInaura/YumaInaura/issues/3073

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

https://line.me/ti/g2/eEPltQ6Tzh3pYAZV8JXKZqc7PJ6L0rpm573dcQ

Twitter

https://twitter.com/YumaInaura

公開日時

2020-04-15

Discussion