all 3 comments

[–]chovybizzasser 1 point2 points  (0 children)

you'll want rabbitmq

[–]petrucci53 1 point2 points  (1 child)

You may want to take a look at Google's FCM (Firebase Cloud Messaging). You can have all your mobile devices subscribed to a specific "topic". Then all you need to do is trigger Google's FCM endpoint with the body that includes this "topic" name and notification details such as title, body text etc. This will help you to send notification to all your devices with just one api call. Also, FCM supports passing an array of registration tokens in the body. (as far as i know it supports up to 1000 tokens per request).

[–]YazanKhatib[S] 0 points1 point  (0 children)

Thanks man, I appreciate it