I am working on an Android project. In that I need to send some notifications on background on the basis of condition on MySQL database... How can I use PHP to send notification to certain users after checking the condition.
Asked
Active
Viewed 1,470 times
1 Answers
0
Follow below steps to achieve this,
- Get the device token using Firebase SDK and store it in your mysql database against user (https://firebase.google.com/docs/cloud-messaging/android/client)
- Select device tokens matching your criteria (SQL Query)
- Send the push message to selected device using firebase rest api (https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages/send, How can I send a Firebase Cloud Messaging notification without use the Firebase Console?)

Prabath Perera
- 240
- 2
- 9