Angular 2+ FCM getToken()不返回任何内容

时间:2017-06-29 18:29:35

标签: angular push message

我正在使用Chrome编写FCM。

以下代码可以正常使用。

this.messaging.requestPermission()
        .then(() => { ... })

但是在获得许可之后,当我想获得令牌时,getToken()没有返回任何内容。它不会调用.then()甚至.catch()。

this.messaging.getToken()
        .then( t => console.log(t) )
        .catch( e => console.error(e) );

请帮帮我。

0 个答案:

没有答案