...
|
...
|
@@ -166,6 +166,7 @@ func NewAps(options *push.Options) (v *Aps) { |
|
|
Alert: NewAlert(options),
|
|
|
AutoBadge: "+1",
|
|
|
ContentAvailable: 0,
|
|
|
Sound: "default",
|
|
|
}
|
|
|
return
|
|
|
}
|
...
|
...
|
@@ -184,7 +185,8 @@ type PushInfo struct { |
|
|
type Aps struct {
|
|
|
Alert *Alert `json:"alert"`
|
|
|
AutoBadge string `json:"autoBadge"` //用于计算应用上面未读数字
|
|
|
ContentAvailable int `json:"content-available"` //推送直接带有透传数据 0:有通知栏消息 1:无通知栏消息
|
|
|
ContentAvailable int `json:"content-available,omitempty"` //推送直接带有透传数据 0:有通知栏消息 1:无通知栏消息
|
|
|
Sound string `json:"sound"`
|
|
|
}
|
|
|
type Alert struct {
|
|
|
Title string `json:"title"`
|
...
|
...
|
|