我想只使用 python 向主题发送 fcm 通知
from pyfcm import FCMNotification
API_KEY = "AAAA...Gzzjo"
push_service = FCMNotification(api_key=API_KEY)
data = {'notification': {'title': 'Test','body': 'first test'}
, 'data':{'click_action':'FLUTTER_NOTIFICATION_CLICK'}}
print(push_service.notify_topic_subscribers(topic_name="topicname", data_message=data))
但是通知没有发送到主题并继续向我显示
{'multicast_ids': [], 'success': 1, 'failure': 0, 'canonical_ids': 0, 'results': [], 'topic_message_id': 4051394435713630091}
任何解决方案?