Documentation ¶
Overview ¶
*
- 事件数据结构 *
- 微信服务器在五秒内收不到响应会断掉连接,并且重新发起请求,总共重试三次。 *
- 1 关注/取消关注事件
- 2 扫描带参数二维码事件
- 3 上报地理位置事件
- 4 自定义菜单事件
- 5 点击菜单拉取消息时的事件推送
- 6 点击菜单跳转链接时的事件推送
Index ¶
Constants ¶
View Source
const ( EMSubscribe = "subscribe" EMUnsubscribe = "unsubscribe" EMScan = "SCAN" EMLocation = "LOCATION" EMClick = "CLICK" EMView = "VIEW" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EvData ¶
type EvData struct { Event string `xml:"Event,omitempty" json:"Event,omitempty"` //for subscribe unsubscribe, SCAN, LOCATION, CLICK, VIEW EventKey string `xml:"EventKey,omitempty" json:"EventKey,omitempty"` //for 扫二维码 Ticket string `xml:"Ticket,omitempty" json:"Ticket,omitempty"` //上报地理位置事件 Latitude float64 `xml:"Latitude" json:"Latitude,omitempty"` //地理位置纬度 Longitude float64 `xml:"Longitude" json:"Longitude,omitempty"` //地理位置经度 Precision float64 `xml:"Precision" json:"Precision,omitempty"` //地理位置精度 //点击菜单跳转链接时的事件推送 .EventMsg = "VIEW" MenuID string `xml:"MenuID" json:"MenuID,omitempty"` //指菜单ID,如果是个性化菜单,则可以通过这个字段,知道是哪个规则的菜单被点击了。 Status string `xml:"Status" json:"Status,omitempty"` //for 客户 user_enter_tempsession SessionFrom string `xml:"SessionFrom" json:"SessionFrom,omitempty"` }
type MsgData ¶
type MsgData struct { MsgId string `xml:"MsgId,omitempty" json:"MsgId,omitempty"` // text Content string `xml:"Content,omitempty" json:"Content,omitempty"` // media MediaId string `xml:"MediaId,omitempty" json:"MediaId,omitempty"` // image PicUrl string `xml:"PicUrl,omitempty" json:"PicUrl,omitempty"` // voice Format string `xml:"Format,omitempty" json:"Format,omitempty"` Recognition string `xml:"Recognition,omitempty" json:"Recognition,omitempty"` // video ThumbMediaId string `xml:"ThumbMediaId,omitempty" json:"ThumbMediaId,omitempty"` //地理位置 LocationX float64 `xml:"Location_X,omitempty" json:"Location_X,omitempty"` //地理位置纬度 LocationY float64 `xml:"Location_Y,omitempty" json:"Location_Y,omitempty"` //地理位置经度 Scale float64 `xml:"Scale,omitempty" json:"Scale,omitempty"` //地理位置精度 Label string `xml:"Label,omitempty" json:"Label,omitempty"` //地址 //link Title string `xml:"Title" json:"Title,omitempty"` Desc string `xml:"Description" json:"Description,omitempty"` Url string `xml:"Url,omitempty" json:"Url,omitempty"` //小卡片 AppId string `xml:"AppId" json:"AppId,omitempty"` PagePath string `xml:"PagePath" json:"PagePath,omitempty"` ThumbUrl string `xml:"ThumbUrl,omitempty" json:"ThumbUrl,omitempty"` }
Click to show internal directories.
Click to hide internal directories.