|
@@ -94,18 +94,17 @@ type Message struct {
|
|
|
Text string `xml:"Content,omitempty" json:"Content,omitempty"`
|
|
|
|
|
|
// 图片 PicURL / MediaID image messgae
|
|
|
- PicURL string `xml:"PicUrl,omitempty" json:"PicUrl,omitempty"`
|
|
|
+ PicURL string `xml:"PicUrl,omitempty" json:"PicUrl,omitempty"`
|
|
|
+ // MediaID 媒体
|
|
|
MediaID string `xml:"MediaId,omitempty" json:"MediaId,omitempty"`
|
|
|
-
|
|
|
// 语音 MediaID / Format voice message
|
|
|
Format string `xml:"Format,omitempty" json:"Format,omitempty"`
|
|
|
-
|
|
|
// 视频/小视频 ThumbMediaID / MediaID video/shortvideo message
|
|
|
ThumbMediaID string `xml:"ThumbMediaId,omitempty" json:"ThumbMediaId,omitempty"`
|
|
|
|
|
|
// 地理位置 location message
|
|
|
- LocationX string `xml:"Location_X,omitempty" json:"Location_X,omitempty"` // 经度
|
|
|
- LocationY string `xml:"Location_Y,omitempty" json:"Location_Y,omitempty"` // 纬度
|
|
|
+ LocationX string `xml:"Location_X,omitempty" json:"Location_X,omitempty"` // 纬度
|
|
|
+ LocationY string `xml:"Location_Y,omitempty" json:"Location_Y,omitempty"` // 经度
|
|
|
Scale string `xml:"Scale,omitempty" json:"Scale,omitempty"` // 地图缩放大小
|
|
|
Label string `xml:"Label,omitempty" json:"Label,omitempty"` // 地理位置信息
|
|
|
|
|
@@ -120,7 +119,13 @@ type Message struct {
|
|
|
EventKey string `xml:"EventKey,omitempty" json:"EventKey,omitempty"` // 事件KEY 值,扫码未关注的 qrscene_ 为前缀(subscribe 事件, 已关注的推送 SCAN 事件),后面为二维码的参数值, 自定义菜单事件与自定义菜单接口中 KEY 值对应
|
|
|
Ticket string `xml:"Ticket,omitempty" json:"Ticket,omitempty"` // 二维码的ticket,可用来换取二维码图片
|
|
|
|
|
|
- MsgID int64 `xml:"MsgId,omitempty" json:"MsgId,omitempty"` // 消息id
|
|
|
+ // 地理位置 location message
|
|
|
+ Latitude string `xml:"Latitude,omitempty" json:"Latitude,omitempty"` // 纬度
|
|
|
+ Longitude string `xml:"Longitude,omitempty" json:"Longitude,omitempty"` // 经度
|
|
|
+ Precision string `xml:"Precision,omitempty" json:"Precision,omitempty"` // 地理位置精度
|
|
|
+
|
|
|
+ MsgID int64 `xml:"MsgId,omitempty" json:"MsgId,omitempty"` // 消息id
|
|
|
+ Status int64 `xml:"Status,omitempty" json:"Status,omitempty"` // 消息发送状态
|
|
|
}
|
|
|
|
|
|
// ArticleItem article item
|