Questions tagged [node-apn]
26 questions
0
votes
0 answers
Open deep link with APN notification
I recently implemented push notifications into my React Native app, which are handled by APNs and FCM for iOS and Android respectively.
I am now trying to implement deep linking into the app, and have had success locally, and have begun trying to…

TreyCollier
- 181
- 1
- 12
0
votes
1 answer
Apple Push Notifications from a serverless MongoDB App Services backend
I have been setting up Apple Push Notifications for an iOS app, using JSON Web Tokens rather than certificates.
I can generate a JWT and make the required POST request from within the app (using the Swift-JWT package) and the notification is…

Chris
- 4,009
- 3
- 21
- 52
0
votes
2 answers
Node.js + APN: Locally, everything works but I get "Endpoint error: unable to get local issuer certificate" when launching on cloud host
I would like to be able to send notifications through a React Native app that I built on my smartphone. This script is only supposed to send a notification to my device when the server starts up.
Config
I have a very simple node js server with this…

ozireu
- 1
- 1
0
votes
1 answer
parse community node-apn fork - send job hangs
We are using the parse fork of node-apn lib ( https://github.com/parse-community/node-apn ) - we switched a year ago to this fork because our actual problem - but now its back.
We are sending around 1.000.000 notifications, separated to different…

trx
- 1
- 2
0
votes
0 answers
IOS push notifications not being grouped - apn
I am using apn push notificaitons from node server.
I want to group same nature of notifications together.
For that I am using threadId parameter but its still not grouping the notifications.
Here is my server side code:
var apnOptions = {
token:…

StormTrooper
- 1,731
- 4
- 23
- 37
0
votes
0 answers
apple apns notifications are being delivered out of sequence. one previous push notification is being sent instead of current one
I have configured my push notifications using the node apn library.
I use an AWS lambda function to send the notification and it is called from another lambda function using event as the invocation type as follows:
var pushPayload = { "users":…

alionthego
- 8,508
- 9
- 52
- 125
0
votes
1 answer
Node-apn throwing Error 8 frequently
I came through this weird behaviour with node-apn throwing error 8 sometimes only. Debugged for same certificate, token and app build.
Details as follows
Called Node APN service iOS token and data to send push notification, while the app was not…

Praveen
- 419
- 3
- 14
0
votes
2 answers
How do I access my data in a PKPushPayload?
XCode 7, Swift 2. (don't even start on me about that, it's not my favorite set of constraints either)
So I'm sending data using node-apn (BIG thanks to those folks!). I'm using the (pushkit option) *.voip topic and I got all that working. I can see…

Michael
- 2,973
- 1
- 27
- 67
0
votes
1 answer
How to count push notifications APN
On the server side, the nodejs platform for sending Apple push notifications is using node-apn
Here is an example with a badge - this is the number of pushes.
const apn = require("apn");
let tokens = ["", "

coder fire
- 993
- 2
- 11
- 24
0
votes
1 answer
how to make node-apn work at angular2 correctly?
first "npm install --save @types/apn"
In app.component.ts
AppComponent
import { Component } from '@angular/core';
import { NavController, NavParams, LoadingController } from 'ionic-angular';
//import apn from 'apn';
import * as apn from…

denny
- 1
- 2
0
votes
0 answers
Push notification on ios9 app
My app communicates with a backend nodejs server (node, express and mongoose).
I store users and messages in MongoDB.
When a user sends a new message to another one:
I update the messages DB
I send to the destination user a push notification
I…

Thomi
- 639
- 2
- 9
- 21