admin管理员组文章数量:1344676
I am building a news website on with PHP and MySQL. For user management, I'm considering using Firebase Auth.
The login, password, email confirmation, etc, will be managed by Firebase. This part was easily achieved using the docs in Javascript.
But at one point the web app needs to know the email of user, for example, to manage the content and allow access to restricted areas, connecting to the MySQL DB using PHP.
Firebase Auth uses JavaScript to find out the email for example:
firebase.auth().onAuthStateChanged(function(user) {
var user = firebase.auth().currentUser;
if(user != null){
var email_id = user.email;
}
}
How can I safely get the user email logged in on the session and send to the server side using PHP? How can I safely be sure the session expired and let the app know about that using PHP? Is this approach remended (Firebase Auth + PHP website)?
Thanks!
I am building a news website on with PHP and MySQL. For user management, I'm considering using Firebase Auth.
The login, password, email confirmation, etc, will be managed by Firebase. This part was easily achieved using the docs in Javascript.
But at one point the web app needs to know the email of user, for example, to manage the content and allow access to restricted areas, connecting to the MySQL DB using PHP.
Firebase Auth uses JavaScript to find out the email for example:
firebase.auth().onAuthStateChanged(function(user) {
var user = firebase.auth().currentUser;
if(user != null){
var email_id = user.email;
}
}
How can I safely get the user email logged in on the session and send to the server side using PHP? How can I safely be sure the session expired and let the app know about that using PHP? Is this approach remended (Firebase Auth + PHP website)?
Thanks!
Share Improve this question asked Aug 15, 2018 at 19:52 tomDevtomDev 5,7605 gold badges33 silver badges41 bronze badges1 Answer
Reset to default 10To securely know what user is accessing your web site, you:
- retrieve the ID token of the user on the client
- securely send the resulting JWT to your back-end
- decode and verify the ID token on your back-end
Ideally you'd use the Firebase Admin SDK for that last step. But unfortunately there is no official Firebase Admin SDK for PHP (yet). There is a third party library that seems to support validating ID tokens in PHP, but I never tried that myself. Of course, JWT is a well-defined standard, so there are support libraries for many languages on https://jwt.io/.
本文标签: javascriptHow to safely use Firebase Auth on a PHP web appStack Overflow
版权声明:本文标题:javascript - How to safely use Firebase Auth on a PHP web app - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743736907a2530174.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论