We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7530f3 commit af3dc03Copy full SHA for af3dc03
push.go
@@ -30,6 +30,33 @@ func (fpc *FCMPushConfig) GetPushConfigAttrs() waBinary.Attrs {
30
}
31
32
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
60
type WebPushConfig struct {
61
Endpoint string `json:"endpoint"`
62
Auth []byte `json:"auth"`
0 commit comments