Из python я хочу отправить уведомление всем моим пользователям Android, которые подписались на определенную тему.
Это ошибка, которую я получаю:
firebase_admin.messaging.ApiCallError: Firebase Cloud Messaging API has not been used in project 432453324 before or it is disabled. Enable it by visiting https://console.developers.goo
gle.com/apis/api/fcm.googleapis.com/overview?project=432453324 then retry.
Я включил fcm для своего приложения для Android, и он прекрасно работает, когда я отправляю уведомление с консоли на Android, но с python что-то не так, что это?
Вот мой код:
topic = 'new'
# See documentation on defining a message payload.
message = messaging.Message(
data={
'title': 'hahaha',
'body': 'test',
},
topic=topic,
)
# Send a message to the devices subscribed to the provided topic.
response = messaging.send(message)
# Response is a message ID string.
print('Successfully sent message:', response)