forked from GabrielStetco/cordovapush-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.config.json
45 lines (38 loc) · 1.01 KB
/
example.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"webPort": 8002,
"mongodbUrl": "mongodb://username:password@localhost/database",
"fcm": {
"apiKey": "YOUR_API_KEY_HERE"
},
"gcm": {
"apiKey": "YOUR_API_KEY_HERE"
},
"baidu": {
"apiKey": "YOUR_API_KEY_HERE",
"secretKey": "YOUR_SECRET_KEY_HERE",
"msg_type": 1
},
"getui": {
"host": "http://sdk.open.api.igexin.com/apiex.htm",
"appId": "YOUR_API_ID_HERE",
"appKey": "YOUR_APP_KEY_HERE",
"masterSecret": "YOUR_MASTER_SECRET_HERE"
},
"pushy": {
"apiKey": "YOUR_API_KEY_HERE"
},
"apn": {
"connection": {
"gateway": "gateway.sandbox.push.apple.com",
"cert": "/path/to/cert.pem",
"key": "/path/to/key.pem"
},
"feedback": {
"address": "feedback.sandbox.push.apple.com",
"cert": "/path/to/cert.pem",
"key": "/path/to/key.pem",
"interval": 43200,
"batchFeedback": true
}
}
}