0

I am developing an Android application with backend laravel, how to push notification to a specific user with a specific time using API?

Also, I found firebase and pusher, so which is better to implement my requirements and how to start?

Eyad Jaabo
  • 391
  • 3
  • 13

1 Answers1

1

If you want to implement your own approach, basically you have to create a db table which keeps subscribe id's or tokens for each user using your application. This tokens can be taken from Firebase with like this. Then, you will be able to send notification via using this tokens from your server.

You can review here for more.

Aytek Sökmen
  • 474
  • 3
  • 9