Skip to content

pushbots/pushbots-nodejs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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!

Releases

No releases published

Packages

No packages published