現在、monaca×mbaasでアプリを作成しているのですが、FireBaseとmBaaSを連携させて、monacaにfirebaseのプラグインを入れてビルドが上手く通り、iosのtestflightに上げて動作を確認しているのですが、アプリをインストールした端末にて通知センターの表示とアイコンバッジの表示が反映されない(いつまでたっても来ない)のですが、FireBaseのログを探ったり等どのようにして探っていったら良いのか分からないです。
必要な設定については全てfireBaseとmBaaSに設定しており、monacaのプロジェクトのjsの部分にも下記のプログラムを実装しております。
if (window.NCMB.monaca !== undefined) { // プッシュ通知受信時のコールバックを登録します window.NCMB.monaca.setHandler( function(jsonData){ alert("callback :::" + JSON.stringify(jsonData)); } ); // デバイストークンを取得してinstallation登録が行われます window.NCMB.monaca.setDeviceToken( "YOUR_APPLICATION_KEY", //YOUR_APPLICATION_KEY "YOUR_CLIENT_KEY", //YOUR_CLIENT_KEY "YOUR_SENDER_ID" //YOUR_SENDER_ID ); } if (window.FirebasePlugin !== undefined) { // Get notified when a token is refreshed window.FirebasePlugin.onTokenRefresh(function(token) { // save this server-side and use it to push notifications to this device console.log("Refresh to get new token: " + token); }, function(error) { alert(error); }); // Get notified when the user opens a notification window.FirebasePlugin.onMessageReceived(function(message) { console.log("Message type: " + message.messageType); if(message.messageType === "notification"){ alert("Notification message received"); if(message.tap){ alert("Tapped in " + message.tap); } } }, function(error) { console.error(error); }); }
ご教授の程お願い致します。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。