0.0.7 • Published 6 years ago

pushbots v0.0.7

Weekly downloads
11
License
MIT
Repository
github
Last release
6 years ago

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!

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

7 years ago

0.0.4

9 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago