mirror of
https://github.com/silenceper/wechat.git
synced 2026-02-04 12:52:27 +08:00
30 lines
696 B
Go
30 lines
696 B
Go
package robot
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/silenceper/wechat/v2/util"
|
|
)
|
|
|
|
const (
|
|
// WebhookSendURL 机器人发送群组消息
|
|
WebhookSendURL = "https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=%s"
|
|
)
|
|
|
|
// RobotBroadcast 群机器人消息发送
|
|
// @see https://developer.work.weixin.qq.com/document/path/91770
|
|
func (r *Client) RobotBroadcast(webhookKey string, options interface{}) (info util.CommonError, err error) {
|
|
var data []byte
|
|
if data, err = util.PostJSON(fmt.Sprintf(WebhookSendURL, webhookKey), options); err != nil {
|
|
return
|
|
}
|
|
if err = json.Unmarshal(data, &info); err != nil {
|
|
return
|
|
}
|
|
if info.ErrCode != 0 {
|
|
return info, err
|
|
}
|
|
return info, nil
|
|
}
|