Send Firebase Cloud Messages to multiple devices through PHP

Опубликовано: 30 Апрель 2026
на канале: LiterallyCoding
20,188
290

Showing how to send Firebase Cloud Messaging to an android application through a PHP api.

necessary links

https://developer.android.com/trainin...
https://firebase.google.com/docs/clou...
https://firebase.google.com/docs/clou...


Steps
1. Connect your app to firebase
2. Paste the google-gson file into your app
3. Send a test notification
4. Handle Notifications on foreground
5. Structure of a notification to send through php
{
'to' : 'target device/ or topic',
'notification' :{
'title' : 'notification title',
'body; : 'the body of the notification'
}
}
6. Curl commands to php
7. Send notification through php