Are you a mobile developer and working on push notification feature ? If yes then you will need this while development :)
Target user is a developer working on mobile platform for push notifications. This utility accepts (for iOS)p12 certificate, push token and then sends push notification to that device. Similarly for android, it accepts server key, push token and then sends a push notificaiton.
1.0.0
Handy GUI utility to send push notification to your device.
- Download dmg from release tab.
- Install it.
-
If you are working with GCM(andorid) then provide
- API key
- Push token
- JSON payload
and hit send button. Thats it... you will recive a notificaiton on your android device.
-
If you are working with APNS(Apple service for push notifications) then provide
- path of p12 file
- passphrase if any
- JSON payload
and hit send button. Thats it... you will receive a notificaiton on your iDevice.
- openssl
- nodejs > 10
- Download project
- unzip
- Execute following
For OS X
$ cd ios
$ npm install
$ node server.js
For ANDROID
$ cd android
$ npm install
$ node server.js
For OS X
- go to http://localhost:8080/
- Upload a p12 file and provide passphrase if any
- If you do not see any errors then you have configured it !!
- now go to http://localhost:8080/ios/YOUR_TOKEN
For ANDROID
Modify config.js in respective directories.
Parameter | Type | default | Explaination |
---|---|---|---|
port | int | 8080/9090 | For OS X 8080 and for android 9090 |
interval_sec | int | -1 | Set value in seconds to receive notification contineously after that interval |
MIT