flutter: how to get the push notification payload from non firebase source - flutter

I am getting push notification from a non-firebase source. I see the push popup and when selected opens my app. However, I need get the payload from the message.
Firebase messaging handler only get me the payload from push message originate via firebase. Is there another plugin that will show me the message payload from non-firebase push.
Thanks

Related

I already get fcm key of ever users,How to send notification to another user with firebase cloud messaging?In dart

I have Fcm key
and working when i put fcm trial of cloud messageing in firebase
I tried but only got same device notification,
I am expecting that when I send a message to another user The other user need to get a notification while the app is not opened

How to setup push notification with supabase in flutter?

I had just replaced my app with supabase from firebase in flutter app.
Firebase has firebase_messaging that provide push notification to device token.
Is there any facilities to create function in supabase and send notification to selected user with device token while changing in database.
If yes than please suggest some function else suggest some method to send notification.
Supabase does not provide a mechanism to send push notifications at this point, so you can use FCM or other push notification sending services to send them out to the users.
If you are going with FCM, you can setup your own backend using Firebase cloud functions or other backend service that you prefer to send the notifications from.
Typically, you would want to send push notifications to your users when there is some kind of change in the database, like when there was a new message sent or someone liked a post. You can listen to these events using Supabase database webhooks. With database webhooks, you can send your backend a request whenever you receive certain data change happening in your database.

How to Save/store push notifications sent from Parse and print it out on any viewcontroller?

I have finished an application with push notification setup through Parse and it was successful, I have followed the doc of Parse to setup push notifications on swift 2.0 ,I can send push notifications. However, I need to add one important thing to the app, is how to store/save the push notification message received to the app and to print it in one/any viewcontrollers? And, of course, any new push notification would replace the old one.
Save the notifications in a table on your server. Then when app is run, call web service and read notifications from that table

Sending push notifications between devices using Parse and Swift

I have configured my app to receive push notifications through Parse, which I can send from the Parse dashboard, but I would like to send notifications between devices, specifically when a button is clicked from either device. I cannot find documentation about this...wondering if anyone has experience doing this.
You have to store the current user into Installation class then send push notification using PFInstallation Query and PFPush.
Please refer this parse documentation for more details to send notification.
https://parse.com/docs/ios/guide#push-notifications
or refer this site Swift Parse : How to Push Notification To a Specific Device/objectId

How to create push notification when the RSS feed gets updated in iPhone?

I need to display a push notification on new updates in the xml feed.
Had gone through http://mobiforge.com/developing/story/programming-apple-push-notification-services and tried that sample code successfully.
But what should I need to do ,to create push notification while new entries come in RSS feed?
You need to write a push notification provider server that sends the actual remote push notification as well.
I suggest you have a look at this link
http://blog.boxedice.com/2009/07/10/how-to-build-an-apple-push-notification-provider-server-tutorial/