Пример кода использования cordova-plugin-fcm
в ионном 3.
import {Platform} from 'ionic-angular';
import { FCM } from '@ionic-native/fcm';
@Component({
templateUrl: 'app.html'
})
export class MyApp {
constructor( private platform: Platform, private fcm: FCM ) {
platform.ready().then(() => {
this.initPushNotification();
});
}
initPushNotification() {
this.fcm.getToken().then(token => {
console.log(token);
// You can get and save push device token to your database.
});
this.fcm.onNotification().subscribe(data => {
//This callback function is called when mobile received a push notification
if (data.wasTapped) {
// You can handle logic after taping push message in notification bar
}
});
}
}
Надеюсь, это поможет вам.если вам нужно больше, дайте мне знать.