Documentation ¶
Overview ¶
群发给用户列表的消息数据结构.
Index ¶
Constants ¶
View Source
const ( MsgTypeText = "text" MsgTypeImage = "image" MsgTypeVoice = "voice" MsgTypeVideo = "mpvideo" MsgTypeNews = "mpnews" MsgTypeWxCard = "wxcard" )
View Source
const ToUserCountLimit = 10000
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Image ¶
type Image struct { MessageHeader Image struct { MediaId string `json:"media_id"` } `json:"image"` }
type MessageHeader ¶
type MessageHeader struct { ToUser []string `json:"touser,omitempty"` // 长度不能超过 ToUserCountLimit MsgType string `json:"msgtype"` }
func (*MessageHeader) CheckValid ¶
func (header *MessageHeader) CheckValid() (err error)
type News ¶
type News struct { MessageHeader News struct { MediaId string `json:"media_id"` } `json:"mpnews"` }
图文消息
type Text ¶
type Text struct { MessageHeader Text struct { Content string `json:"content"` } `json:"text"` }
type Video ¶
type Video struct { MessageHeader Video struct { MediaId string `json:"media_id"` } `json:"mpvideo"` }
type Voice ¶
type Voice struct { MessageHeader Voice struct { MediaId string `json:"media_id"` // mediaId 通过上传多媒体文件得到 } `json:"voice"` }
Click to show internal directories.
Click to hide internal directories.