django-ios-notifications
django-ios-notifications copied to clipboard
Django iOS Notifications makes it easy to send push notifications to iOS devices
The system depends on django-fields which only works with Python 2. Hence python3 projects cannot use this plugin.
no need to modify BaseService due to optional passphrase argument
Are there any plans to use the new-ish HTTP/2 push notification API?
This brings the `./manage.py push_ios_notification` command up to date with django 1.8+
Seems for django 1.10 we have the following: ``` from django_fields.fields import EncryptedCharField ``` Unfortunately django_fields isn't properly supported. EncryptedCharField isn't compatible with django 1.10. Can we remove this dependency?
We ran into a problem recently. Unless I'm mistaken, the typical usage of the APNService.push_notification_to_devices method seems to be oriented towards sending push notifications occasionally to a large number of...
We just recently set up a cron job for the Feedback service cleanup command, and while doing so, we ran into a few usability issues that I thought be interesting...
APNService class | _write_message Since APNS socket connection is not synchronous should we not be restarting at the device that failed based on the return message from APNS and not...
The Admin currently allows creating boardcast Notifications only since there's no way to push the notifications to a subset of all devices. It would be easy to link notifications to...