引用Secure HTTP trigger for Cloud Functions for Firebase,当我使用signInWithCustomToken
使用自定义令牌登录Firebase时,我是否可以知道在何处可以检索Firebase ID令牌,以便我可以对云进行安全的HTTP调用Firebase的功能?感谢。
答案 0 :(得分:1)
要检索Firebase ID令牌:
使用signInWithCustomToken
返回的用户对象
做
user.getToken().then(function(token) {console.log('Firebase ID token', token})
详细信息可在此处找到:https://firebase.google.com/docs/reference/js/firebase.User