Go語言使用釘釘機器人推送消息的實現示例
學習瞭Go語言後,打算利用最近比較空一點,寫一個前端部署工具,不需要每次都復制粘貼的麻煩,我們希望再部署開始之前和部署結束後推送釘釘消息
創建一個釘釘機器人
這個比較簡單
添加完後會給你一個webhook就是我們發送消息的地址
推送消息
show code!
func SendDingMsg(msg string) { //請求地址模板 webHook := `https://oapi.dingtalk.com/robot/send?access_token=04c381fc31944ad2905f31733e31fa15570ae12efc857062dab16b605a369e4c` content := `{"msgtype": "text", "text": {"content": "`+ msg + `"} }` //創建一個請求 req, err := http.NewRequest("POST", webHook, strings.NewReader(content)) if err != nil { // handle error } client := &http.Client{} //設置請求頭 req.Header.Set("Content-Type", "application/json; charset=utf-8") //發送請求 resp, err := client.Do(req) //關閉請求 defer resp.Body.Close() if err != nil { // handle error } }
發送成功!
到此這篇關於Go語言使用釘釘機器人推送消息的實現示例的文章就介紹到這瞭,更多相關Go 釘釘機器人推送消息內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Go語言七篇入門教程六網絡編程
- Go語言實現關閉http請求的方式總結
- Golang實現HTTP編程請求和響應
- Golang簡單實現http的server端和client端
- 解決golang post文件時Content-Type出現的問題