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 钉钉消息发送
- Host: GitHub
- URL: https://github.com/handsomestwei/go-dingtalk
- Owner: handsomestWei
- License: apache-2.0
- Created: 2020-08-05T08:33:32.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-06T03:07:20.000Z (almost 6 years ago)
- Last Synced: 2025-04-03T16:45:58.805Z (about 1 year ago)
- Topics: ding, dingtalk, golang
- Language: Go
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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,
})
```