Cordova 不能';t连接到firebase

Cordova 不能';t连接到firebase,cordova,firebase,firebase-cloud-messaging,Cordova,Firebase,Firebase Cloud Messaging,我正在cordova应用程序中使用phonegap插件push接收firebase的推送通知: PushNotification.init({ android: { iconColor: "#ffb800", senderID: "725892xxxxxx" }, ios: { "sound": true, "vibration": true, "badge": true },

我正在cordova应用程序中使用phonegap插件push接收firebase的推送通知:

PushNotification.init({
    android: {
        iconColor: "#ffb800",
        senderID: "725892xxxxxx"
    },
    ios: {
        "sound": true,
        "vibration": true,
        "badge": true
    },
    windows: {}
});
启动应用程序时,我收到以下错误消息:

ERROR: Couldn't connect to firebase
在PushNotification.init语句中。 有人知道是什么导致了这个错误吗


提前谢谢

我可以通过在config.xml中将插件降级为2.0.0版本来解决这个问题