jenny
jenny

Reputation: 277

Push notifications for mobile application

I am a beginner with mobile app development. I need to build a push notification for our existing mobile app.

Upvotes: 1

Views: 2877

Answers (1)

Teyam
Teyam

Reputation: 8082

I would like to know if I can use FCM with Python as backend.

  • You may want to check Python documentation which discussed regarding the use of pyfcm 1.2.2. Furthermore, this related SO post might also help.

Also as I do not use the native mobile app , I also like to know if I can achieve push notifications using FCM in my app.

  • Actually, Google Cloud Messaging (GCM) is used to implement push notifications for mobile devices and as mentioned, Firebase Cloud Messaging (FCM) is the new version of GCM. It inherits the reliable and scalable GCM infrastructure, plus new features! Based from that statement, it's should be clear that it is possible to achieve push notifications using FCM.

I suggest that you please check Firebase Notifications and Firebase - FAQ for more detailed information on the things that you can do with Firebase.

Upvotes: 2

Related Questions