python-gcm icon indicating copy to clipboard operation
python-gcm copied to clipboard

Compatibility with Firebase Cloud Messaging (FCM) ?

Open Sispheor opened this issue 8 years ago • 4 comments

It's the new version of GCM. See https://firebase.google.com/docs/cloud-messaging/

Sispheor avatar May 20 '16 23:05 Sispheor

Currently changing the GCM_URL = 'https://gcm-http.googleapis.com/gcm/send' to GCM_URL = 'https:fcm.googleapis.com/fcm/send' in gcm.py works.

acedip avatar May 24 '16 19:05 acedip

Looks like there is new library for that: https://github.com/olucurious/PyFCM

ziima avatar May 17 '17 08:05 ziima

Just writing the correct URLs: GCM_URL = 'https://gcm-http.googleapis.com/gcm/send' to GCM_URL = 'https://fcm.googleapis.com/fcm/send/'

From https://firebase.google.com/docs/cloud-messaging/http-server-ref & https://developers.google.com/cloud-messaging/android/android-migrate-fcm

veerenmandalia avatar Jan 25 '19 02:01 veerenmandalia

When will this version be released? GCM-Servers will be deactivated by Google on May 29th as per the following notice we got by mail:

Last year we announced that the GCM server and client APIs are deprecated. To prevent a disruption in your service, you must redirect your Cloud Messaging server requests to the Firebase Cloud Messaging (FCM) endpoint at fcm.googleapis.com/fcm/ before May 29, 2019.

ajans avatar May 07 '19 07:05 ajans