我是靠谱客的博主 怕孤独小甜瓜,最近开发中收集的这篇文章主要介绍linux 脚本调用企业微信_微信企业号 发送信息 shell,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

##微信企业号发送信息shell

#可作为shell函数模块调用,用于微信通知、jenkins发版微信通知等等

微信API官方文档 https://work.weixin.qq.com/api/doc#90002/90151/90854

#!/bin/bash

# wechat.send.sh

# 微信企业号发送信息 shell

# blog https://www.cnblogs.com/elvi/p/11444388.html

##############################

function sendmsg() {

CorpID="wwe518*企业微信账号唯一ID"

Secret="自定义应用的密钥"

AgentId=1000004 #应用id

Url="https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=$CorpID&corpsecret=$Secret"

Gtoken=$(curl -s -G $Url|awk -F" '{print $10}')

PURL="https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=$Gtoken"

[ `echo $Gtoken |wc -L` -gt 100 ] || { echo "get token error !";exit 1; }

curl -s --data-ascii '{

"toparty": "'"$1"'",

"msgtype": "text",

"agentid": "'"$AgentId"'",

"text": {"content": "'"$2"'"}

}' $PURL &>/tmp/wechat.log

if [ `grep "errmsg.*ok" /tmp/wechat.log |wc -l` -ne 1 ];then

echo 'send error !'

cat /tmp/wechat.log

exit 1

fi

}

##############################

#测试 sendmsg

#内容

msg="@警告

主机:$(hostname)

信息:Node test

时间:$(date +"%F %T")

"

# 发送 "部门id" "内容"

sendmsg "3" "$msg"

##############################

最后

以上就是怕孤独小甜瓜为你收集整理的linux 脚本调用企业微信_微信企业号 发送信息 shell的全部内容,希望文章能够帮你解决linux 脚本调用企业微信_微信企业号 发送信息 shell所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部