Ionic 3 - Push-plugin Error: String resource ID #0x0 when safariViewController Installed

Ionic 3 - Push-plugin Error: String resource ID #0x0 when safariViewController Installed

基本上这个问题是为了获得关于这个问题以及如何解决它的一些指导。

在我尝试在项目中使用 cordova-plugin-safariviewcontroller 后,phonegap-plugin-push 出现此错误,当应用程序加载时 phonegap-plugin-push 将无法初始化 push.on 函数所以会给出这个错误 String resource ID #0x0。我正在尝试构建一个带有通知和 auth0 登录的应用程序,这就是我需要这些插件的原因。

根据这个问题https://github.com/phonegap/phonegap-plugin-push/issues/1800 phonegap-plugin-push will work if safariviewcontroller plugin is not installed. But safariviewcontroller is a requisite for reproducing the example given in Auth0 https://auth0.com/docs/quickstart/native/ionic2/01-login

有没有其他方法可以在不安装 safariviewcontroller 的情况下在 ionic 中使用 Auth0?

是否可以在 ionic 3+ 中使用 inappbrowser 通过 Auth0 进行身份验证?

我已经通过卸载 safariviewcontroller 插件并仅使用 WebAuth 库解决了这个问题。