1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package wechat
- const (
-
- TokenExpires = 90 * 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
-
- PayURLUnifiedOrder = `/pay/unifiedorder`
-
- PayURLPayRefund = `/secapi/pay/refund`
-
- PayURLPapPay = `/pay/pappayapply`
-
- PayURLPapayEntrust = `/papay/h5entrustweb`
-
- PayTradeTypeJS = `JSAPI`
-
- PayTradeTypeNative = `NATIVE`
-
- PayTradeTypeAPP = `APP`
-
- MsgText = `text`
-
- MsgImage = `image`
-
- MsgVoice = `voice`
-
- MsgVideo = `video`
-
- MsgShortVideo = `shortvideo`
-
- MsgLocation = `location`
-
- MsgLink = `link`
-
- MsgNews = `news`
-
- MsgMusic = `music`
-
- MsgEvent = `event`
-
-
-
-
- MsgEventSubscribe = `subscribe`
-
- MsgEventUnSubscribe = `unsubscribe`
-
- MsgEventSCAN = `SCAN`
-
- MsgEventLOCATION = `LOCATION`
-
- MsgEventCLICK = `CLICK`
-
- MsgEventVIEW = `VIEW`
-
- MsgEventTEMPLATESENDJOBFINISH = `TEMPLATESENDJOBFINISH`
- )
|