pushbots

0.0.7 • Public • Published

pushbots-nodejs

All Contributors npm npm Twitter Follow

Installation

npm install pushbots

Usage

 
var pushbots = require('pushbots');
var Pushbots = new pushbots.api({
    id:'548ef5901d0ab1f3228b456a',
    secret:'646f1ac2fd86ea14ae5a95db7fef724c'
});
Pushbots.setMessage("Hi from new nodeJS API!");//sending to (android and ios) platforms by default add optional paramater "0" for iOS, "1" for Android and "2" for Chrome.
Pushbots.customFields({"article_id":"1234"});
Pushbots.customNotificationTitle("CUSTOM TITLE");
//to send by tags
Pushbots.sendByTags(["myTag"]);
 
//to push to all
Pushbots.push(function(response){
    console.log(response);
});
 
//to push to one device 
var token = "APA91bEeYRWNVo2oc6DdTpSABGkqLm5QrTTbHVJbTGc6Bpjjlau";
Pushbots.pushOne(token, function(response){
    console.log(response);
});
 
//to push to multiple device up to 1,000 token
var tokens = ["APA91bEeYRWNVo2oc6DdTpSABGkqLm5QrTTbHVJbTGc6Bpjjlau"];
Pushbots.pushByToken(tokens, function(response){
    console.log(response);
});

Contributors

Thanks goes to these wonderful people:


amrsobhy

💻

Abdullah Diaa

💻

Contributions of any kind welcome!

Package Sidebar

Install

npm i pushbots

Weekly Downloads

14

Version

0.0.7

License

MIT

Unpacked Size

9.95 kB

Total Files

5

Last publish

Collaborators

  • pushbots