fcm-django
fcm-django copied to clipboard
FCM Django: Send push notifications via django to websites, iOS & android mobile devices through FCM (Firebase Cloud Messaging)
Sending notifications works , however no sound is played on the device when the notification arrives.
Hi, Thank you for your project, it is really handy. However, the fact it doesn't have any tests makes it less attractive to use in production projects. Have you considered...
Hello, As I sent the notification and check the response, it returned OK `"notification": "FirebaseResponseDict(response=, registration_ids_sent=['xxxxxx', 'xxxxxx'], deactivated_registration_ids=[])"` However when I checked using Node JS, it return clearly as `errorInfo:...
I could find the steps to integrate this library with any JS Framework like react or similar can you help me with step by step guide to do the same....
Whenever a task occurs, I have to send notification of different contents for each user. Now, I'm sending notifications by communicating with each fcm server through for loop, but I...
I had a misconfigured APNS on FCM and was receiving `InvalidArgumentError('Request contains an invalid argument.')` from fcm-django while trying to send message to iOS, which was totally unclear to me....
Hi. The README mentions that "devices marked as inactive will not be sent notifications" but it is actually not true. When you send message using ``device.send_message()``, it is sent regardless...
Django provide standard way to override settings with `override_settings` decorator. Sadly this doesn't work for `FCM_DJANGO_SETTINGS`.
explicit URLs Binding to ViewSets does not work for delete method to delete a device, throws 404, but works fine for creating a new device ``` notification_url_patterns = [ path('register_device',...
`active` is being changed through `update()`, which does not emit a signal that I need. Would it make sense to add signal to update? Something similar to the following in...