使用火灾通知(火灾消息)服务时何时更新令牌?

时间:2019-03-01 09:28:37

标签: angular firebase angular5 angularfire2

我在我的角度项目中使用了消防消息服务 我也使用drupal而不是firebase,而不仅仅是从firebase发送消息。

因此,在所有教程中,我都看到他们正在使用fireDB更新令牌

updateToken(userId, token) {
// we can change this function to request our backend service
   this.angularFireAuth.authState.pipe(take(1)).subscribe(
    () => {
    const data = {};
    data[userId] = token
     this.angularFireDB.object('fcmTokens/').update(data)
  })
}

我没有使用angularFireAuth或angularFireDB 那么怎么做 以及何时刷新/更新令牌?

0 个答案:

没有答案