标签: firebase google-app-engine firebase-authentication
我目前在Google App Engine应用程序中有一些路由受Google App Engine中的Users API保护。现在,我被要求支持没有Google帐户的用户。
在我看来,Firebase auth是我所需要的工具,但我不知道具体如何集成它:
firebase.auth().onAuthStateChanged(console.log); // prints my email
http请求是否没有办法包含令牌,以便我可以在服务器端检查它们?
谢谢!