简述:使用shell脚本发送http请求,解析请求获取token再次发起请求
系统:ubuntu系统
工具:cURL(发送http请求),jq(解析json),没有需要安装
host="192.168.1.199"
post="8888"
pre="/api/v1"
url_pre="http://${host}:${post}${pre}"
get_token="curl --location --request GET ${url_pre}/token?access_id=admin&access_secret=123456&="
echo $get_token
token=$($get_token)
echo $token
token=$(echo $token | jq ".data.token")
token=${token:1:-1}
echo $token
curl --location --request POST ${url_pre}/device/runtime_data?token=${token} --header 'Content-Type: application/json' --data-raw '{"id_device": "d2217a3b-dfc0-4301-86f3-78fbb4cb58e4","data_type": ""}'
shell 调用HTTP POST请求
curl -X POST --header 'Content-Type: application/json' --header 'ReportScript-Sign: FgPlfGlYw83zMdZd' --header 'Accept: application/json' -d '{
"data": {
"appkey": "XXXXX",
"code": "bigdata.platform.XXXXX",
"params": {}
},
"extra": {}
}' 'http://XX.XX.XX.XX:XXXXX/report_api/extraFunction/commonApi'
到此这篇关于shell脚本发送http请求的实现示例的文章就介绍到这了,更多相关shell发送http请求内容请搜索aitechtogether.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持aitechtogether.com!