美文网首页
Shell 中curl请求变量参数

Shell 中curl请求变量参数

作者: ouhoo | 来源:发表于2017-09-20 23:21 被阅读0次

    写的升级shell脚本,里面调用了某些restapi,需要传header或者body参数,使用shell中定义的变量($xx,  ${xx}形式),发现不能转换,原因是在单引号里面。

    https://stackoverflow.com/questions/13341955/how-to-pass-a-variable-in-a-curl-command-in-shell-scripting

    结论:如果使用变量,得换成双引号,数据里面也有双引号,加转义字符即可。

    最终形式如下:

    curl-X POST --header'Content-Type: application/json'--header'Accept: application/json'--header'authtype: local'--header"username: $admin_user"--header"password:${admin_token}"-d"{\"email\": \"$payment_email\", \"paymentAccount\": \"$payment_account\", \"paymentServer\": \"${server_name}\", \"remarks\": \"vendor for${wx_service_name}\", \"vendor\": \"xxx\" }" "http://xxxxx.com/api/001api"-w"\nhttp_code=%{http_code}\n"-v -o${result_log} |grep'http_code=200'

    相关文章

      网友评论

          本文标题:Shell 中curl请求变量参数

          本文链接:https://www.haomeiwen.com/subject/uruasxtx.html