0.0.2 • Published 7 years ago

onesignal-notification v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

OneSignal Nodejs Notification api wrapper

Tests

This is an unofficial wrapper/client for the OneSignal notification API that runs on Node.JS. A list of selected wrappers for different languages and environments is available at the Developer site's Libraries page.

Installation

$ npm install onesignal-notification

Usage

const OnesignalNotificationApi = require('onesignal-notification')
const api = new OnesignalNotificationApi('MY-REST-KEY', 'APP-ID')

const message = {
  it: 'Some message',
  en: 'Some message'
}

api.sendToAll(message, null, (err, res) => {
  console.log(err)
  console.log(res)
})

API

sendToAll

const OnesignalNotificationApi = require('onesignal-notification')
const api = sendToAll(message, options, callback)

sendToSegment

//Coming Soon

sendToDevices

//Coming Soon

...

Test

npm test

Coverage

npm run coverage

Development

See something you think can be improved? Open an issue or clone the project and send a pull request with your changes.

Author

Palmabit

License

MIT license

0.0.2

7 years ago

0.0.1

7 years ago