作者 yangfu

推送修改

@@ -4,7 +4,7 @@ import "encoding/json" @@ -4,7 +4,7 @@ import "encoding/json"
4 4
5 /*PushInfo 推送信息*/ 5 /*PushInfo 推送信息*/
6 type PushInfoRequest struct { 6 type PushInfoRequest struct {
7 - Type int `json:"mmmType"` 7 + Type int `json:"msgType"`
8 DeviceToken json.RawMessage `json:"deviceToken" ` 8 DeviceToken json.RawMessage `json:"deviceToken" `
9 ClientId json.RawMessage `json:"clientId"` 9 ClientId json.RawMessage `json:"clientId"`
10 AppKey string `json:"appKey" valid:"Required"` 10 AppKey string `json:"appKey" valid:"Required"`
@@ -24,7 +24,7 @@ var ( @@ -24,7 +24,7 @@ var (
24 authtoken = "" 24 authtoken = ""
25 expire time.Time 25 expire time.Time
26 authMux sync.RWMutex 26 authMux sync.RWMutex
27 - expireSpan = time.Second * 3600 27 + expireSpan = time.Second * 600 //token 10分钟过期
28 ) 28 )
29 29
30 const ( 30 const (