79267613

Date: 2024-12-10 09:15:51
Score: 2.5
Natty:
Report link

you should check te documentation of FCM about this problem. I have this problem now but i resolve modify my request to FCM. Parameters as "priority" help me to solve this problem. To android i used proxy and priority to

 mensaje = {
            "GCM": json.dumps({
                "notification": {
                    "title": title,
                    "body": body.strip(),
                    "icon": "ic_launcher_round",
                    "android_channel_id": ChannelName,
                    "proxy":"DENY",
                    "notification_priority":"PRIORITY_MAX"
                },
                "data": {
                    "Alarmas": TextoAlarma,
                    "Fallas": TextoFalla,
                    "Superv": TextoSupervision,
                    "android_channel_id": ChannelName
                },
                "android": {
                    "priority":"HIGH"
                }
            })
        }

Docs FCM to solve this problem

Reasons:
  • Blacklisted phrase (1): help me
  • Blacklisted phrase (1): I have this problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Antonio Brea