質問編集履歴
1
試したことの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -77,3 +77,41 @@
|
|
77
77
|
|
78
78
|
|
79
79
|
よろしくお願いいたします。
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
=====================================
|
84
|
+
|
85
|
+
追記:
|
86
|
+
|
87
|
+
以下のコードを追加して動作確認したところ、メッセージは受信しているようでしたが、
|
88
|
+
|
89
|
+
androidは「Message type:notification」と表示されたのに対し、iOSでは「Message type:data」と表示されたので、
|
90
|
+
|
91
|
+
この違いのような気がしています。
|
92
|
+
|
93
|
+
firebaseコンソールから「テストメッセージを送信」で同じように送っているのに違いが出るのが解せませんが……。
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
```javascript
|
98
|
+
|
99
|
+
window.FirebasePlugin.onMessageReceived(function(message) {
|
100
|
+
|
101
|
+
alert("Message type: " + message.messageType);
|
102
|
+
|
103
|
+
if(message.messageType === "notification"){
|
104
|
+
|
105
|
+
alert("Notification message received");
|
106
|
+
|
107
|
+
}
|
108
|
+
|
109
|
+
alert(message);
|
110
|
+
|
111
|
+
}, function(error) {
|
112
|
+
|
113
|
+
alert(error);
|
114
|
+
|
115
|
+
});
|
116
|
+
|
117
|
+
```
|