码迷,mamicode.com
首页 > 其他好文 > 详细

go 钉钉报警

时间:2019-04-04 15:58:10      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:ati   buffer   interface   print   ons   ken   int   url   util   

代码

package main

import (
    "bytes"
    "encoding/json"
    "fmt"
    "io/ioutil"
    "net/http"
)

const webhook_url = "https://oapi.dingtalk.com/robot/send?access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

func dingToInfo(s string) bool {
    content, data := make(map[string]string), make(map[string]interface{})
    content["content"] = s
    data["msgtype"] = "text"
    data["text"] = content
    b, _ := json.Marshal(data)

    resp, err := http.Post(webhook_url,
        "application/json",
        bytes.NewBuffer(b))
    if err != nil {
        fmt.Println(err)
    }
    defer resp.Body.Close()
    body, _ := ioutil.ReadAll(resp.Body)
    fmt.Println(string(body))
    return true
}

func main()  {
    dingToInfo("报警")
}

go 钉钉报警

标签:ati   buffer   interface   print   ons   ken   int   url   util   

原文地址:https://blog.51cto.com/hequan/2374161

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!