我能够使用 pyfcm 成功发送标题/文本消息:
result = push_service.notify_multiple_devices(registration_ids=registration_tokens, message_title="title",
message_body="testing")
但是当我尝试发送数据消息时,它失败了:
payload = {
'action': 'testing',
'test number': 1,
'question': "what do you do with a klondike bar?",
}
result = push_service.multiple_devices_data_message(registration_ids=registration_tokens, data_message=payload)
在第一种情况下,我按预期通过 onMessageReceived 方法在电话上的 FirebaseMessagingService 中收到文本/消息。在第二种情况下(字典数据有效负载),它永远不会被接收到:
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
super.onMessageReceived(remoteMessage);
RemoteMessage.Notification data = remoteMessage.getNotification();
System.out.print("here");
}
在这两种情况下,结果似乎都是成功的。
任何建议都将受到欢迎!