侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

linux curl post json

2023-11-28 星期二 / 0 评论 / 0 点赞 / 52 阅读 / 669 字

json中需要包含变量 : 一: now=$(date +"%m-%d-%Y")curl -X POST -H "Content-Type: application/json" / --data

json中需要包含变量 :

一:

now=$(date +"%m-%d-%Y")curl -X POST -H "Content-Type: application/json" /    --data '{ "color":"red", "message":"Build failed '"$now"'", "message_format":"text" }' /    https://api.hipchat.com/v2/room/<room>/notification?auth_token=<token>

 

二:

now=$(date +"%m-%d-%Y")curl -X POST -H "Content-Type: application/json" /    --data "{ /"color/":/"red/", /"message/":/"Build failed $now/", /"message_format/":/"text/" }" /    https://api.hipchat.com/v2/room/<room>/notification?auth_token=<token>

广告 广告

评论区