shell脚本发送http请求的实现示例

2023-12-05 0 697

简述:使用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请求的实现示例

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请求内容请搜索悠久资源网以前的文章或继续浏览下面的相关文章希望大家以后多多支持悠久资源网!

您可能感兴趣的文章:

  • Linux shell实现HTTP服务示例代码
  • 使用HTTP api简单的远程执行PowerShell脚本

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

悠久资源 linux shell shell脚本发送http请求的实现示例 https://www.u-9.cn/jiaoben/linuxshell/101166.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务