node-bb10
v1.0.3
Published
A NodeJS library for BlackBerry 10 push notifications
Downloads
5
Maintainers
Readme
node-bb10
node-bb10 is a Node.JS library that is able to push notifications to a BlackBerry 10 device.
Installation
$ npm install node-bb10
##Requirements
A BlackBerry 10 device and the appropriate keys that you get from BlackBerry when registering your application.
Usage
var bb10 = require('node-bb10');
// create a message and add recipients
var message = new bb10.PushMessage(ID, 'Hello World!');
message.addRecipient('00000000'); // The PIN number of the recipient
message.addAllRecipients(['00000001', '00000002']); // Add multiple recipient at once
// The default delivery method is 'notspecified'
message.setDeliveryMethod('unconfirmed');
// Create the push initiator
var initiator = new bb10.PushInitiator(applicationId, password, CPID);
initiator.push(message, function(err, result) {
if(err) {
console.log('Oops, something went wrong.');
console.log(err.statusCode);
console.log(err.message);
}
else {
console.log(result.statusCode);
console.log(result.message);
}
});
`com.endare.appName@1374148800`
</dd>
Development
If you are testing your application, BlackBerry works with an evaluation URL. If you want to run in evaluation/development mode you should add an extra parameter when creating the pushinitiator.
var initiator = new bb10.PushInitiator(applicationId, password, CPID, true);
Contributors
- Sam Verschueren [email protected]
- Oliver Salzburg [email protected]
Changelog
1.0.0:
- first release
The full MIT license
The MIT License
Copyright (c) 2013 Endare BVBA [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.