123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- 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`
-
- ErrResOk = 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`
- )
|