Tuesday, September 29, 2020

Real Python: Using Google Login With Flask

In this course, you’ll work through the creation of a Flask web application. Your application will allow a user to log in using their Google identity instead of creating a new account. There are tons of benefits with this method of user management. It’s going to be safer and simpler than managing the traditional username and password combinations.

By the end of this course, you’ll be able to:

  • Create a Flask web application that lets users log in with Google
  • Create client credentials to interact with Google
  • Use Flask-Login for user session management in a Flask application
  • Better understand OAuth 2 and OpenID Connect (OIDC)

[ Improve Your Python With 🐍 Python Tricks 💌 – Get a short & sweet Python Trick delivered to your inbox every couple of days. >> Click here to learn more and see examples ]



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...