An open API service indexing awesome lists of open source software.

https://github.com/handsomestwei/go-dingtalk

golang 钉钉消息发送
https://github.com/handsomestwei/go-dingtalk

ding dingtalk golang

Last synced: about 1 year ago
JSON representation

golang 钉钉消息发送

Awesome Lists containing this project

README

          

# go-dingtalk
golang 钉钉消息发送

# Usage
```
dingRobotUrl := "https://oapi.dingtalk.com/robot/send?access_token=abc"
title := "hello"
text := "hello world"

dingtalk.NewDingTalkClient(dingRobotUrl).SendMarkdown(dingtalk.MarkDown{
Title: title,
Text: text,
})
```