gpt4 book ai didi

javascript - 将 Firebase 身份验证 token 发送到 Nodejs 服务器

转载 作者:行者123 更新时间:2023-12-02 23:23:04 28 4
gpt4 key购买 nike

我想让客户端通过前端使用firebase登录。稍后我想发送 token 来验证他是否已登录到我的服务器,以便我可以检查数据库中是否有关于他的一些信息。例如:如果他支付了特定类(class)的费用。

firebase 文档没有提供有关如何将其发送到我自己的服务器的实际代码:

firebase.auth().currentUser.getIdToken(/* forceRefresh */ true).then(function(idToken) {
// Send token to your backend via HTTPS
// ...
}).catch(function(error) {
// Handle error
});

所以,我正在寻找一个想法,或者最好是一些关于如何通过每个请求将 token 发送到服务器的代码。

最佳答案

有很多方法可以做到这一点。我喜欢使用 Axios https://github.com/axios/axios

axios.post('/your-endpoint', {
token: your-token
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});

关于javascript - 将 Firebase 身份验证 token 发送到 Nodejs 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56860072/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com