firebase-cloud-messaging Questions
12
Solved
I want to send a notification from a device to another but when I sent it I got in the receiver device :
D/FLTFireMsgReceiver( 8876): broadcast received for message
E/FA ( 8876): Missing google_app...
Ericaericaceous asked 16/4, 2022 at 18:4
8
Solved
I really don't know what is going on with these things.
I am using FCM web push normally for my website. I can receive the message on the website if I am in foreground or I receive the notification...
Aida asked 18/3, 2021 at 18:50
5
Solved
I'm trying to send push notification for iOS via Google cloud functions but it returns error that The provided registration token is not registered. But I've checked it by debugging my app and the ...
Emlynn asked 26/10, 2018 at 12:52
10
Solved
I am receiving messages from firebase for notifications with APNs. In firebase, I have the certificate of APNs key, with the same id in the Xcode project in Firebase that is extracted from Apple De...
Beatrisbeatrisa asked 7/10, 2021 at 16:57
2
The "old / version 8" JavaScript API for Firebase messaging had a function for sending a notification to the mobile device:
admin.messaging().sendToDevice(...)
The "new / modular / ...
Convivial asked 18/12, 2021 at 2:3
4
Solved
I am following this Microsoft Guide to migrate from GCM/FCM notifications to FCM v1.
From the guide, I -
1.Configured the Firebase Service Account Credentials in Azure Notification Hub
2.Updaeted b...
Victoriavictorian asked 16/4, 2024 at 11:55
3
Solved
I am using FCM to send push notifications and they are being sent. However I see the message below in the debug console every time a message is received.
W/FirebaseMessaging( 6134): Unable to log e...
Freya asked 1/5, 2021 at 16:15
2
Solved
when my mobile is in charging any time I send FCM it's wake up
but when it's not On charging the notification not received until I press the power or home button to wake up the mobile
is there any ...
Ledbetter asked 11/9, 2020 at 14:40
5
Solved
I'm trying to send some data from my node.js server to an android client via FCM(Firebase Cloud Messaging). I get the following error: "data must only contain string values" when sending it. My dat...
Vicar asked 16/1, 2020 at 15:36
3
Solved
While calling the subscribeToTopic method in iOS, this APNS token exception is coming. I have followed the documentation. I have used the Flutterfire configure command for configuring the Flutter p...
Trier asked 12/9, 2023 at 13:16
5
Solved
I'm trying to send notification using a cron job. I migrated from GCM to FCM. In my server side, I changed https://android.googleapis.com/gcm/send to https://fcm.googleapis.com/fcm/send and also up...
Signal asked 1/6, 2016 at 6:14
12
I have my flutter App integrated with firebase, everything was fine but when I migrated firebase project to client firebase console, added his google services file, changed DefaultFirebaseOption.cu...
Exoteric asked 22/1, 2022 at 12:13
2
Solved
I am trying to implement push notification using Firebase Cloud Messaging, I send the message through firebase console. when composing a message in Firebase console, I set the badge number to be 1 ...
Appeal asked 19/3, 2018 at 2:26
5
I am using:
flutter version 2.2
firebase_messaging: ^10.0.2
I receive push notification, then click on it and the app is opened.
Then I do not see FirebaseMessaging.onMessageOpenedApp.listen getti...
Patriarchate asked 24/6, 2021 at 16:56
9
Solved
After running the following line in node-js:
import * as admin from "firebase-admin";
import * as serviceAccount from "../../firebase_service_account_key.json";
const app = admin.initializeApp({
...
Deprecative asked 3/5, 2019 at 22:33
3
Solved
I'm moving my FCM implementation from Legacy API to the new HTTP v1 api.
I've already created my service account with firebase-adminsdk
I've also managed to send push notifications using HTTP v1 to...
Thousandth asked 21/6, 2023 at 5:44
4
import 'package:flutter/material.dart';
import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
class PushNotificationService
...
Middle asked 27/3, 2021 at 8:40
3
Solved
Following the Google developer instructions on implementing Firebase in my app, I notice that android lint complains.
The idea is that we have to implement two services which inherit from Firebas...
Schertz asked 11/5, 2017 at 23:30
3
Solved
Due to the recent changes in Notification permissions in the Android 13 SDK, I need to update my app with FCM integration to obey the notifications rule. I have upgraded the compileSdk to 33 and al...
Neisse asked 8/2, 2023 at 9:19
4
I assumed I followed all the steps to handling background notifications from firebase in flutter. I have created a top-level function that I am expecting to be triggered whenever a notification com...
Rogelioroger asked 22/9, 2022 at 16:30
5
I have created a push notification using react-native Firebase and react-native-push-notification. i have implement all types of notifications like local, schedule background and quit. But i have s...
Feil asked 8/4, 2021 at 6:19
4
The context:
I have a flutter app in which it is my goal to handle push notifications messages with firebase messaging to users who are subscribed to a topic. The notification is sent with data tha...
Elkeelkhound asked 12/5, 2023 at 15:55
8
I am using the notification payload below and use Postman to send a push notifications to Android devices:
{
"to" : "/topics/xxxx" ,
"data" : {
"url" : "https://res.cloudinary.com/demo/image/up...
Beata asked 30/8, 2019 at 11:26
27
Solved
I am having an issue with FireBase Cloud Messaging in which I get the Token from the device and send the notification test through the Google Firebase notification console however, the notification...
Jink asked 20/5, 2016 at 16:18
6
I am using Firebase push notifications in my iOS Application. Although I am able to send the notification by sending below payload, it doesn't play a sound when received.
{
"to": "myToken",
"no...
Clomp asked 5/9, 2016 at 17:34
© 2022 - 2025 — McMap. All rights reserved.