我有以下bash脚本
#!/bin/bash
body=$(cat << EOF
{
"CreatedBy": "$(hostname -f)",
"Id": "$(uuidgen)",
"Type": "TestAlertType",
"AlertCategory": "NonUrgent"
}
EOF
)
curl -H "Content-Type: application/json" -X POST -d $body https://dev.cloudapp.net/v1/
但是我在帖子上收到了无效的json错误。我错过了什么?
答案 0 :(得分:14)
这有效
curl -H "Content-Type: application/json" -X POST -d "$body" https://dev.cloudapp.net/v1/