1 Star 0 Fork 0

liuhuan/go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
senddingding 675 Bytes
一键复制 编辑 原始数据 按行查看 历史
liuhuan 提交于 2021-06-24 08:48 . 钉钉发送通知模板脚本
package main
import (
"net/http"
"strings"
)
func main() {
SendDingMsg("测试环境发版完毕")
}
func SendDingMsg(msg string) {
//请求地址模板
webHook := `https://oapi.dingtalk.com/robot/send?access_token=xxx`
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
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liuhuan-devops/go.git
[email protected]:liuhuan-devops/go.git
liuhuan-devops
go
go
master

搜索帮助