1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package wechat
- const (
-
- TokenExpires = 60 * 60
-
- TicketExpires = 60 * 60
-
- BaseURL = `https://api.weixin.qq.com`
-
- OpenURL = `https://open.weixin.qq.com`
-
- PayHost = `https://api.mch.weixin.qq.com`
-
- ErrReqOk = 0
-
-
- MsgText = `text`
-
- MsgImage = `image`
-
- MsgVoice = `voice`
-
- MsgVideo = `video`
-
- MsgShortVideo = `shortvideo`
-
- MsgLocation = `location`
-
- MsgLink = `link`
-
- MsgNews = `news`
-
- MsgMusic = `music`
- )
|