Documentation ¶
Overview ¶
客服主动回复消息.
Index ¶
- Constants
- type Article
- type Client
- func (clt *Client) SendImage(msg *Image) error
- func (clt *Client) SendMusic(msg *Music) error
- func (clt *Client) SendNews(msg *News) (err error)
- func (clt *Client) SendText(msg *Text) error
- func (clt *Client) SendVideo(msg *Video) error
- func (clt *Client) SendVoice(msg *Voice) error
- func (clt *Client) SendWxCard(msg *WxCard) (err error)
- type CustomService
- type Image
- type MessageHeader
- type Music
- type News
- type Text
- type Video
- type Voice
- type WxCard
Constants ¶
View Source
const ( MsgTypeText = "text" // 文本消息 MsgTypeImage = "image" // 图片消息 MsgTypeVoice = "voice" // 语音消息 MsgTypeVideo = "video" // 视频消息 MsgTypeMusic = "music" // 音乐消息 MsgTypeNews = "news" // 图文消息 MsgTypeWxCard = "wxcard" // 卡卷消息 )
View Source
const (
NewsArticleCountLimit = 10
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Article ¶
type Article struct { Title string `json:"title,omitempty"` // 图文消息标题 Description string `json:"description,omitempty"` // 图文消息描述 URL string `json:"url,omitempty"` // 点击图文消息跳转链接 PicURL string `json:"picurl,omitempty"` // 图文消息的图片链接, 支持JPG, PNG格式, 较好的效果为大图640*320, 小图80*80 }
图文消息里的 Article
type CustomService ¶
type CustomService struct {
KfAccount string `json:"kf_account"`
}
如果需要以某个客服帐号来发消息(在微信6.0.2及以上版本中显示自定义头像), 则需在JSON数据包的后半部分加入 customservice 参数
type Image ¶
type Image struct { MessageHeader Image struct { MediaId string `json:"media_id"` // 通过素材管理接口上传多媒体文件得到 MediaId } `json:"image"` *CustomService `json:"customservice,omitempty"` }
图片消息
type MessageHeader ¶
type Music ¶
type Music struct { MessageHeader Music struct { Title string `json:"title,omitempty"` // 音乐标题, 可以为 "" Description string `json:"description,omitempty"` // 音乐描述, 可以为 "" MusicURL string `json:"musicurl"` // 音乐链接 HQMusicURL string `json:"hqmusicurl"` // 高质量音乐链接, WIFI环境优先使用该链接播放音乐 ThumbMediaId string `json:"thumb_media_id"` // 通过素材管理接口上传多媒体文件得到 ThumbMediaId } `json:"music"` *CustomService `json:"customservice,omitempty"` }
音乐消息
type News ¶
type News struct { MessageHeader News struct { Articles []Article `json:"articles,omitempty"` // 多条图文消息信息, 默认第一个item为大图, 注意, 如果图文数超过10, 则将会无响应 } `json:"news"` *CustomService `json:"customservice,omitempty"` }
图文消息
func (*News) CheckValid ¶
检查 News 是否有效, 有效返回 nil, 否则返回错误信息.
type Text ¶
type Text struct { MessageHeader Text struct { Content string `json:"content"` // 支持换行符 } `json:"text"` *CustomService `json:"customservice,omitempty"` }
文本消息
type Video ¶
type Video struct { MessageHeader Video struct { MediaId string `json:"media_id"` // 通过素材管理接口上传多媒体文件得到 MediaId ThumbMediaId string `json:"thumb_media_id"` // 通过素材管理接口上传多媒体文件得到 ThumbMediaId Title string `json:"title,omitempty"` // 视频消息的标题, 可以为 "" Description string `json:"description,omitempty"` // 视频消息的描述, 可以为 "" } `json:"video"` *CustomService `json:"customservice,omitempty"` }
视频消息
type Voice ¶
type Voice struct { MessageHeader Voice struct { MediaId string `json:"media_id"` // 通过素材管理接口上传多媒体文件得到 MediaId } `json:"voice"` *CustomService `json:"customservice,omitempty"` }
语音消息
type WxCard ¶
type WxCard struct { MessageHeader WxCard struct { CardId string `json:"card_id"` CardExt string `json:"card_ext,omitempty"` } `json:"wxcard"` *CustomService `json:"customservice,omitempty"` }
卡券消息, 特别注意客服消息接口投放卡券仅支持非自定义Code码的卡券
Click to show internal directories.
Click to hide internal directories.