根据herehere,当使用FCM REST API时,FCM支持将mutable_content变量作为布尔值发送。但是我在Firebase Admin Java API中找不到等效的方法。

final ApsAlert alert = ApsAlert.builder()
       .setTitle("Test notification")
       .setBody("Hello World")
       .build();

final Aps aps = Aps.builder()
       .setAlert(alert)
       .setBadge(messageCount)
       .setContentAvailable(messageCount > 10000)
       .setCategory("tesy")
       .build();

final ApnsConfig config = ApnsConfig.builder()
       .putHeader("apns-id", getMessageId())
       .setAps(aps)
       .putCustomData("type", "test")
       .putCustomData("mutable_content", true)
       .build();

remoteMessage.setApnsConfig(config);
尝试将其设置为ApnsConfig中的自定义数据值,但是它不起作用。
PS:此方法在Spring引导服务器中运行,以将通知发送给用户。

最佳答案

我也在搜索其他网站,最后,我得到了正确的输出(IOS)

 final ApsAlert alert =
                    ApsAlert.builder()
                        .setTitle(notification.getEventType())
                        .setBody(notification.getEventDescription())
                        .build();
                final Aps aps =
                    Aps.builder()
                        .setAlert(alert)
                        .setContentAvailable(true)
                        .setMutableContent(false)
                        .build();
                final ApnsConfig apnsConfig =
                    ApnsConfig.builder()
                        .setAps(aps)
                        .putCustomData("eventId", notification.getEventNumber())
                        .putCustomData("category", notification.getCategory())
                        .putCustomData("priority", notification.getEventPriority())
                        .build();
                message =
                    Message.builder()
                        .setToken(notificationRequestDto.getTo())
                        .setApnsConfig(apnsConfig)
                        .build();

在此代码中,我们还传递自定义数据。

07-26 08:51
查看更多