apnotic icon indicating copy to clipboard operation
apnotic copied to clipboard

A Ruby APNs HTTP/2 gem able to provide instant feedback.

Results 18 apnotic issues
Sort by recently updated
recently updated
newest added

- In order to send pushkit notifications, `apns-push-type` must be sent as `voip` - Since this value is determined based on `content_available` for bg of alert values, the cleanest solution...

We are using this gem with sync pushes: https://github.com/ostinelli/apnotic#sync-pushes This is the relevant code: ``` def deliver_to_apns connection = Apnotic::Connection.new(cert_path: StringIO.new(apns_cert)) notification = Apnotic::Notification.new(device_token) notification.alert = { title: title, body:...

Our application recently encountered an issue with Sidekiq processes crashing due to an expired APN certificate. The root of this issue appears to have stemmed from the usage of [`abort_on_exception`](https://github.com/ostinelli/net-http2/blob/master/lib/net-http2/client.rb#L126)...

Hi, I've noticed that following the async code example from the documentation leads to some pushes not being sent, in spite of using `connection.join` to wait for all pushes to...

proposed fix for invalidpushtype error https://github.com/ostinelli/apnotic/issues/87

We have multiple APN servers sending APNs to Apple. We occasionally get a sporadic outbreak of `InvalidProviderToken` errors from Apple that lasts for less than an hour and recovers itself....

Hello! I'm using the worker example as a basis of my implementation, and all is fine until I get an exception in the worker, this goes through the Sidekiq retry...

I would like to include handling for timeout situations when using `.push_async` and would appreciate some guidance on how best to accomplish this. To provide some context, we first discovered...

Like many people probably, I'm considering moving to this gem from grocer or houston. I'm wondering if anyone has used it in production successfully and reliably, and what performance was...

help wanted

Push notification api requires topic to be passed with the request. Can we pass default topic for notifications?

enhancement