0
我想將通知發送到使用以下傳入網絡掛接鬆弛的通道是我對於如何使用在Linux bash腳本懈怠豐富的格式
# !/bin/sh
curl -X POST --data-urlencode 'payload={"channel": "#aws_webhooks", "username": "webhookbot",
"attachments":[
{
"fallback":"blahb",
"pretext":"blahblahblahblahbla",
"color":"warning",
"fields":[
{
"title":"Alarms Updates",
"value":" blahblahblahblahblahblah",
"short":false
}
]
}
]
}'
https://hooks.slack.com/services/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
bash腳本運行此腳本我面對後這個錯誤,有人可以幫助我在我寫作腳本做錯了什麼
sh new.sh
curl: no URL specified!
curl: try 'curl --help' or 'curl --manual' for more information
您需要在您的有效負荷的末端反斜槓,之前'https'。此外,刪除第一行'#'後的空格(儘管這不是你問題的原因)。 – codeforester
仍然無法使用 –