-
-
Notifications
You must be signed in to change notification settings - Fork 206
Push notification implementation in Flutter Parse SDK? #302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I use firebase admin on the server side and then use cloud code to send a notification |
I can send and receive notifications with firebase admin, thanks @pastordee. However, on android, when I get notifications in the foreground, the application crashes. How did you set up your client application? |
` void configNotification() {
} e.g
}` |
Thanks pastordee, how did you integrate firebase admin with parse server users? It would be very useful for everyone to have a solution to send push notifications easily from the parse server. |
Hi @pamarcan |
`
`
} Future updateParseInstallation(token) async{ print("updateParseInstallationt $token"); ` |
Wow! thanks a lot pastordee |
I don't think local messaging is needed, only in case you want to show user a notification if app is opened and in foreground. |
Because firebase doesn’t display notification in app that’s why you need something like Flushbar so you can use that to show the in app message yourself |
Firebase does show notifications. As explained in their official documentation- If app is in foreground, it doesn't show notifications. |
Hello @phillwiggins @RodrigoSMarques @RodrigoSMarques @guilhermedaldim @pamarcan Is there any updates related to push notifications with parse sdk in flutter? Can we implement push notifications using parse server sdk for flutter as well? Waiting for reply. Thanks. |
@MungaraJay |
@RodrigoSMarques Thanks. |
@vinnytwice |
We are closing issues that have been open for a long time without activity. |
I am not sure if the information at this issue is obsolete or not but I am able to send push notification at android without need of firebase admin, just only with parse server. But on iOS, it is not working. I get following error on parse server error log.
As far as I understand I need to add some code to AppDelegate.swift at iOS code of flutter. When I added the code to AppDelegate.swift as described in this link, I get compile errors. I think this document needed to be updated. This document might be created for an older version of XCode and/or Swift. https://docs.parseplatform.org/tutorials/ios-push-notifications/ |
@pastordee
|
Is it possible with the Flutter Parse SDK to send push notification?
Send a notification to a specific user with deviceToken and be able to handle it according to the notification payload?
In advance, thank you.
The text was updated successfully, but these errors were encountered: