Giter Club home page Giter Club logo

apns2's Introduction

APNS2

wercker status npm version Twitter

Node client for connecting to Apple's Push Notification Service using the new HTTP/2 protocol with JSON web tokens.

Now uses the native http2 module in Node.js v8.10 or later


Create Client

Create an APNS client using a signing key and environment flag:

const { APNS } = require('apns2')

let client = new APNS ({
    team: teamId,
    keyId: keyId,
    key: keyText,
    production: true
})

Sending Notifications

Send a basic notification with message:

let headers = {
    'apns-priority': 10,
    'apns-topic': topic
}

let payload = {
        aps: {
            alert: 'Testing node',
            badge: 1,
            sound: 'default'
        }
}

// array of tokens
let tokens = [goodDeviceToken, invalidToken]

//client sends the same payload with same headers to multiple tokens
//authorisation is the only thing done internally
client.connect().then(() => {
    client.push({
        deviceTokens: tokens,
        payload: payload,
        headers: headers
    }).then(results => console.log('done', results)).catch(err => console.log('can not push', err))
}).catch(err => {
    console.log('can not connect', err)
})

Available options can be found at APNS Payload Options

Error Handling

Just iterate trough results (token is added to the actual server result)

Requirements

apns2 requires Node.js v8.10 or later

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.