您好,登錄后才能下訂單哦!
前期需要注冊一個微信企業號(度娘可以找到好多帖子)這部分就不再詳細說了。
主要通過Powershell 調取微信企業號API來實現發送消息的目的。
下面是一個寫好的函數大家可以直接調用:
function send-weixin { Param( [Parameter(Mandatory = $True, Position = 1)] [String]$Username, [Parameter(Mandatory = $True, Position = 2)] [String]$Content ) $auth_string = https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid=【你自己的Corpid】&corpsecret= 【你自己的密碼】 $auth_values = Invoke-RestMethod $auth_string # Send message 下面是微信JSON內容的寫法 $token = $auth_values.access_token $body="{ `"touser`":`"$username`", `"msgtype`":`"text`", `"agentid`":`"1`", `"text`": {`"content`":`"$content`"}, `"safe`":`"0`" }" $chinese=[System.Text.Encoding]::UTF8.GetBytes($body) #這里是解決中文編碼問題的即發送中文消息時候使用。 Invoke-RestMethod "https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=$token" -ContentType "application/json" -Method Post -Body $chinese }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。