window.addEventListener('load',function(){document.getElementById('sign-out').onclick=function(){firebase.auth().signOut();};// FirebaseUI config.varuiConfig={signInSuccessUrl:'/',signInOptions:[// Comment out any lines corresponding to providers you did not check in// the Firebase console.firebase.auth.GoogleAuthProvider.PROVIDER_ID,firebase.auth.EmailAuthProvider.PROVIDER_ID,//firebase.auth.FacebookAuthProvider.PROVIDER_ID,//firebase.auth.TwitterAuthProvider.PROVIDER_ID,//firebase.auth.GithubAuthProvider.PROVIDER_ID,//firebase.auth.PhoneAuthProvider.PROVIDER_ID],// Terms of service url.tosUrl:'<your-tos-url>'};firebase.auth().onAuthStateChanged(function(user){if(user){// User is signed in, so display the "sign out" button and login info.document.getElementById('sign-out').hidden=false;document.getElementById('login-info').hidden=false;console.log(`Signed in as ${user.displayName} (${user.email})`);user.getIdToken().then(function(token){// Add the token to the browser's cookies. The server will then be// able to verify the token against the API.// SECURITY NOTE: As cookies can easily be modified, only put the// token (which is verified server-side) in a cookie; do not add other// user information.document.cookie="token="+token;});}else{// User is signed out.// Initialize the FirebaseUI Widget using Firebase.varui=newfirebaseui.auth.AuthUI(firebase.auth());// Show the Firebase login button.ui.start('#firebaseui-auth-container',uiConfig);// Update the login state indicators.document.getElementById('sign-out').hidden=true;document.getElementById('login-info').hidden=true;// Clear the token cookie.document.cookie="token=";}},function(error){console.log(error);alert('Unable to log in: '+error)});});
请注意,onAuthStateChanged() 方法(用于控制用户登录或退出登录时所发生的更改)将用户的 ID 令牌存储为 Cookie。此 ID 令牌是 Firebase 在用户成功登录时自动生成的唯一令牌,并由服务器用于对用户进行身份验证。
更新 Web 服务以使用令牌
接下来,使用用户的唯一 Firebase ID 令牌验证服务器上的用户,然后解密其令牌,以便您可以向用户输出其数据。
如需使用 Firebase ID 令牌,请执行以下操作:
在 main.py 文件的 root 方法中检索、验证和解密令牌:
fromflaskimportFlask,render_template,requestfromgoogle.auth.transportimportrequestsfromgoogle.cloudimportdatastoreimportgoogle.oauth2.id_tokenfirebase_request_adapter=requests.Request()@app.route("/")defroot():# Verify Firebase auth.id_token=request.cookies.get("token")error_message=Noneclaims=Nonetimes=Noneifid_token:try:# Verify the token against the Firebase Auth API. This example# verifies the token on each page load. For improved performance,# some applications may wish to cache results in an encrypted# session store (see for instance# http://flask.pocoo.org/docs/1.0/quickstart/#sessions).claims=google.oauth2.id_token.verify_firebase_token(id_token,firebase_request_adapter)exceptValueErrorasexc:# This will be raised if the token is expired or any other# verification checks fail.error_message=str(exc)# Record and fetch the recent times a logged-in user has accessed# the site. This is currently shared amongst all users, but will be# individualized in a following step.store_time(datetime.datetime.now(tz=datetime.timezone.utc))times=fetch_times(10)returnrender_template("index.html",user_data=claims,error_message=error_message,times=times)
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["很难理解","hardToUnderstand","thumb-down"],["信息或示例代码不正确","incorrectInformationOrSampleCode","thumb-down"],["没有我需要的信息/示例","missingTheInformationSamplesINeed","thumb-down"],["翻译问题","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-04-03。"],[[["The `REGION_ID` is a Google-assigned code based on the region selected during app creation, which is included in App Engine URLs for apps created after February 2020, and is optional for apps created before that date."],["This guide outlines how to add a user sign-in flow to a Python web service using Firebase Authentication, enabling users to authenticate and view their information."],["Firebase provides JavaScript methods and variables to configure sign-in behaviors, including sign-out functionality and a variable for the sign-in UI, managing the visual changes based on user authentication status."],["The process includes retrieving, verifying, and decrypting a unique Firebase ID token on the server side, using this token to authenticate users and access their data."],["After local testing with Firebase, you can redeploy the web service to App Engine, making the updated version live, and then use the gcloud app browse command to view it."]]],[]]