0

我能够使用 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");
}

在这两种情况下,结果似乎都是成功的。

任何建议都将受到欢迎!

4

1 回答 1

0

好像有问题multiple_devices_data_message

我试过这个:

result = push_service.single_device_data_message(registration_id=registration_tokens[0], data_message=payload)

它按预期工作。所以现在要解决我的问题,我需要遍历每个注册令牌,调用single_device_data_message每一个

于 2019-01-18T19:53:39.163 回答