Skip to content

Commit af3dc03

Browse files
committed
push: add APNs config
1 parent b7530f3 commit af3dc03

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

push.go

+27
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,33 @@ func (fpc *FCMPushConfig) GetPushConfigAttrs() waBinary.Attrs {
3030
}
3131
}
3232

33+
type APNsPushConfig struct {
34+
Token string `json:"token"`
35+
}
36+
37+
func (apc *APNsPushConfig) GetPushConfigAttrs() waBinary.Attrs {
38+
return waBinary.Attrs{
39+
"id": apc.Token,
40+
"platform": "apple",
41+
"version": 2,
42+
"reg_push": 1,
43+
"preview": 1,
44+
45+
/*
46+
"background_location": 0,
47+
"call": "Opening.m4r",
48+
"default": "note.m4r",
49+
"groups": "note.m4r",
50+
"lg": "en",
51+
"lc": "US",
52+
"nse_call": 0,
53+
"nse_ver": 0,
54+
"voip": apc.VoIPToken,
55+
"voip_payload_type": 0,
56+
*/
57+
}
58+
}
59+
3360
type WebPushConfig struct {
3461
Endpoint string `json:"endpoint"`
3562
Auth []byte `json:"auth"`

0 commit comments

Comments
 (0)