我在我的角度项目中使用了消防消息服务 我也使用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 那么怎么做 以及何时刷新/更新令牌?