I have integrated Google Wallet to my e-commerce store so the user can add loyalty cards and coupons to their google e-wallet . Now I need to know how can I use FCM (Firebase Cloud Messaging) to send push notifications to the user throughout google wallet upon pass updating (like received new points , new tier , expired etc...).
I have tried to search on the internet about it but have found nothing. Thanks in advance for your help!
FCM wouldn't be able to do that. The wallet api would control notifications for the wallet app. More documentation can be found here: https://developers.google.com/wallet/retail/offers/use-cases/offer-expiration-notification#custom-offer-expiration-notification-time
Related
I am building an admin app for woocommerce site, i want to send a push notification from WordPress to my application when new order is placed on website with orders details ,
I didn't find any way to do it is there any salution you can give ne ti achive it.
I have tried onesignal plugin with firebase but it allow only to send push notifications for post update etc, other way also give this service for other task but not for orders receiving.
you can grab the order from Woocommerce with This package
then create your notification function with Local Notifications
and also FCM firebase messaging
after that you can create a function in your Firebase to push notifications to your devices
with the right method it is symple.
Most tutorials I've seen on the topic of notifications either broadcast notifications through the Firebase Console, or create in-app notifications that don't work if the app is in the background or is closed completely.
Is there a way to make notifications pop up dynamically using Flutter and Firebase even when the app is closed? Something like Whatsapp or Instagram notifications.
Reference image for what I mean by notifications like Whatsapp: https://www.techidence.com/wp-content/uploads/2020/10/WhatsApp-Nootifications.jpg
You won't be able to generate dynamic notifications directly from Flutter. Since to do this, the App has to be active. Usually you would send these kind of notifications from some kind of backend. Google Cloud Messaging exposes an API for this, which allows you to send POST requests to an Endpoint, and Google handles the sending of the actual notification.
Check this article under the point "1. Send Notification"
https://medium.com/#selvaganesh93/firebase-cloud-messaging-important-rest-apis-be79260022b5
hello I'm new to flutter and trying to get push notification in flutter , I have successfully subscribed the user to a topic and sent a notification through the firebase console by topic , what I'm trying to do is to have a button for admins in the app and when they post for a particular topic the users with that topic get the notification I have heard about cloud functions but I don't know exactly where to start ! i hope I made my point ! I have seen some videos that talks about type script but is there is any workaround this ?
The Firebase documentation names notifying the user when something interesting happens as an example use-case. From there:
Developers can use Cloud Functions to keep users engaged and up to date with relevant information about an app. Consider, for example, an app that allows users to follow one another's activities in the app. Each time a user adds themselves as a follower of another user, a write occurs in the Realtime Database. Then this write event could trigger a function to create Firebase Cloud Messaging (FCM) notifications to let the appropriate users know that they have gained new followers.
The function triggers on writes to the Realtime Database path where followers are stored.
The function composes a message to send via FCM.
FCM sends the notification message to the user's device.
To review working code, see Send FCM notifications.
I am trying to decide on using Mesibo for my Ecommerce website and mobile application and couldn't find any documentation on email notifications for unread messages on Mesibo. I found documentation on push notifications for the app but couldn't find anything on email notifications for unread messages on the website.
Can anyone tell me if this is something that is not included in the Mesibo API and needs to be manually coded or is there any documentation available for this?
Thanks.
Use the mesibo webhook to deliver offline messages only and forward them to your user email. It is explained here https://mesibo.com/documentation/faq/messaging/#is-it-possible-to-deliver-messages-via-email
Hope it helps
what is difference between Push notification and cloud message?
is registration id and device id store in third party ?
Push Notification is a notification that appears on a client app, usually like a popup, that is pushed from a server. That's it. Pretty straightforward. You could also check out this searchmobilecomputing link for a good explanation, or even just doing a quick Google search would return you a lot information about Push Notification.
Cloud Message on the other hand is something vague. If you're referring to the Cloud Messaging in Google Cloud Messaging, then I believe you're giving it too much thought. Google Cloud Messaging (now known as Firebase Cloud Messaging) is the name of Google's free push notification service.
For the registration token, I believe Google stores a copy of the tokens on their end, but doesn't keep track of them. It is the developer's responsibility to keep track of the tokens i.e. storing them in a trusted and secure server.