打开jira 页面配置网络钩子,对应路径【管理应用】|【系统】|【网络钩子】
创建http 服务,在服务中输出json 内容,然后操作问题填写带@xxx的评论,会发现会收到数据【~xxx】的消息。接下来可以自己拼字符串通过机器人发送消息给企业微信或者钉钉
package main
import (
"fmt"
"net/http"
"io/ioutil"
"strings"
)
func parseJSON(r *http.Request) ([]byte, string, error) {
r