We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b55e481 + 16944a8 commit 4eb9523Copy full SHA for 4eb9523
src/main/java/org/terning/fcm/application/FcmPushSenderImpl.java
@@ -37,6 +37,8 @@ public boolean send(Notification notification) {
37
Aps aps = Aps.builder()
38
.setAlert(apsAlert)
39
.setMutableContent(true)
40
+ .putCustomData("type", type)
41
+ .putCustomData("imageUrl", imageUrl)
42
.build();
43
44
ApnsConfig apnsConfig = ApnsConfig.builder()
@@ -52,6 +54,8 @@ public boolean send(Notification notification) {
52
54
.putData("imageUrl", imageUrl)
53
55
56
57
+ log.info("📦 전송된 FCM 메시지: {}", fcmMessage);
58
+
59
String response = FirebaseMessaging.getInstance().send(fcmMessage);
60
log.info("FCM 메세지 전송 성공, 응답 ID: {}", response);
61
return true;
0 commit comments