You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 510B

123456789101112131415161718
  1. # 非官方 Dingtalk webhook Golang SDK
  2. ## 此工程仅封装了 Dingtalk 的 webhook 部分的请求
  3. ## 使用
  4. 首先在dingtalk中创建一个机器人,将accessToken拷贝出来,然后执行下面方法即可
  5. ```Go
  6. webhook := dingtalk.Webhook(accessToken)
  7. webhook.SendTextMsg("这是一个没有AT的文本消息", false)
  8. ```
  9. ## License
  10. This project is licensed under the MIT License.
  11. See the [LICENSE](https://github.com/lunny/webhook_dingtalk/blob/master/LICENSE) file
  12. for the full license text.