Questions tagged [pushy]

Pushy is a Java library for sending APNs (iOS, macOS, and Safari) push notifications. It is written and maintained by the engineers at Turo. https://relayrides.github.io/pushy/

48 questions
6
votes
2 answers

Flutter push notification when app is closed

I want to have a push notification when the app is closed but I don't know how to do it. I already tried firebase cloud messaging, it worked but the notification took around 3 to 5 min to come, but I need it instantly. I tried pushy.me, it works…
Thomas Beau
  • 63
  • 1
  • 1
  • 5
4
votes
2 answers

Testflight - Universal Push Notification Client SSL Certificate - BadDeviceToken

I'm to trying to test my push notifications while utilizing TestFlight. I can successfully receive a push notification on a device when I deploy directly to it from Xcode. However when I deploy the app to the device via TestFlight (as an external…
Hurricane
  • 1,454
  • 1
  • 13
  • 31
3
votes
0 answers

APNS Token based authentication with multiple servers

I’m implementing APNS Token based authentication using pushy Java library right now but there is one unclear part in Apple’s and Pushy’s documentions. I will have several severs sending push notifications with pushy using Token based…
Emmanuel G.
  • 201
  • 2
  • 8
3
votes
0 answers

pushy apns does not get through AWS load balancer

Trying to run a mock apns service on AWS EC2. Connection works well with curl and simple go program using apns2 library. However when using pushy the query gets stopped at the loadbalancer with a HTTP 1/1 400 Bad Request. So is not getting through…
GAllan
  • 409
  • 4
  • 11
3
votes
2 answers

Reference Jar within main Jar to pass as javaagent to JVM

I need to add a -javaagent argument in my JVM args when running jar1, but reference jar2 that is contained within jar1. I have tried: -javaagent:BOOT-INF/lib/jetty-alpn-agent-2.0.0.jar" with no success. How do I determine the location of JARs…
MeanwhileInHell
  • 6,780
  • 17
  • 57
  • 106
2
votes
0 answers

How does pushy keep the socket open on Android?

We're currently evaluating a push notification service for our iOS and Android apps. Our two favourites are Firebase and Pushy. Pushy doesn't use Firebase under the hood, but rather open and maintain their own socket connection. I was wondering…
ASP
  • 773
  • 1
  • 8
  • 22
2
votes
1 answer

Pushy Notifications not working if Android Application is not in stack in china Android Phones

We have implemented Pushy Notifications For our android Application in china.. it is working fine if app is in foreground or background. but when we remove our application from the stack, we cannot receive any notifications..This is only happening…
Gaurav
  • 37
  • 1
  • 8
2
votes
1 answer

How to handle multi user scenario with Pushy web push notifications?

I have a rare scenario where there is a possibility that on a single device and browser combination there could be multiple users logging in / out. For example, on a home laptop using Chrome, User 1 may login and close the browser (authentication…
2
votes
1 answer

PushyNetworkException thrown on Pushy.Register

I am trying to get pushy from pushy.me to work with Xamarin. I have created a Bindings Library for Pushy and it builds fine. On Pushy.Register(context) I get an exception thrown. I can't figure out what is causing the exception has anyone else tried…
Derek Lawrence
  • 1,551
  • 2
  • 16
  • 36
1
vote
0 answers

Pushy APNS: No route to host

I am trying to send iOS push notifications using the Pushy Java library. The code to send the APNS looks like this: String topic = "XXX"; ApnsClient apnsClient = new…
Shadowman
  • 11,150
  • 19
  • 100
  • 198
1
vote
2 answers

Android Notification Issue after last Android Update Pushy.me API

I'm new to Android & also to Java.... I'm trying to get the Example of Pushy.me, it was working fine before I downloaded yesterday the last 2 Android Updates(yes I did update too late)... New thing from Update: One UI 4.1 Now it's just doing…
1
vote
1 answer

After how many days will APNS mark a device as inactive?

If a user has uninstalled my app, how long will the APNS take to update that this device is inactive for the bundleID?
rlr
  • 320
  • 2
  • 11
1
vote
0 answers

Flutter Pushy Error: Unhandled Exception: MissingPluginException(No implementation found for method notify on channel me.pushy.sdk.flutter/methods)

I'm using pushy-flutter for push notification service. But my application not able to push notification when the app get killed. It only works well when the app is running or I minimize the application. From the debug console, I can see the apps has…
zm Choo
  • 11
  • 1
1
vote
1 answer

Get Topic Id from Device Token in Apple Push Notification for DeviceTokenNotForTopic exception

Currently I'm using Pushy to send Push Notification for iOS devices. Everything is working fine, except I'm getting exceptions for some devices with response (DeviceTokenNotForTopic) Do we have any way to decode Device Token to get Topic…
Nghia Do
  • 2,588
  • 2
  • 17
  • 31
1
vote
0 answers

Why is didReceiveRemoteNotification not being invoked if app is in background

I'm trying to send a push notification to my app using pushy.me. When the app is in the background I'm unable to do anything with the data received, unless I tap on the Notification Banner or the app is in the foreground.. Here is my Notification…
Edward Tattsyrup
  • 245
  • 1
  • 3
  • 15
1
2 3 4