如果使用signInWithCustomToken,如何获取Firebase ID令牌?

时间:2017-04-26 01:15:20

标签: firebase firebase-authentication google-cloud-functions

引用Secure HTTP trigger for Cloud Functions for Firebase,当我使用signInWithCustomToken使用自定义令牌登录Firebase时,我是否可以知道在何处可以检索Firebase ID令牌,以便我可以对云进行安全的HTTP调用Firebase的功能?感谢。

1 个答案:

答案 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