GitPedia

Fastapi sso

FastAPI plugin to enable SSO to most common providers (such as Facebook login, Google login and login via Microsoft Office 365 Account)

From tomasvotava·Updated June 22, 2026·View on GitHub·

FastAPI plugin to enable SSO to most common providers (such as Facebook login, Google login and login via Microsoft Office 365 account). The project is written primarily in Python, distributed under the MIT License license, first published in 2021. Key topics include: facebook-authentication, fastapi, fastapi-oauth, google-authentication, microsoft-authentication.

Latest release: 0.21.1
June 22, 2026View Changelog →

FastAPI SSO

Supported Python Versions
Test coverage
Tests Workflow Status
Lint Workflow Status
Mypy Workflow Status
Black Workflow Status
CodeQL Workflow Status
PyPi weekly downloads
Project License
PyPi Version

FastAPI plugin to enable SSO to most common providers (such as Facebook login, Google login and login via
Microsoft Office 365 account).

This allows you to implement the famous Login with Google/Facebook/Microsoft buttons functionality on your
backend very easily.

Documentation: https://tomasvotava.github.io/fastapi-sso/

Source Code: https://github.com/tomasvotava/fastapi-sso

Demo site

An awesome demo site was created and is maintained by even awesomer
Chris Karvouniaris (@chrisK824). Chris has also posted multiple
Medium articles about FastAPI and FastAPI SSO.

Be sure to see his tutorials, follow him and show him some appreciation!

Please see his announcement with all the links.

Quick links for the eager ones:

Security Notice

Version 0.19.0 Update: OAuth state Validation Fix

A critical OAuth login CSRF vulnerability caused by missing state validation was
reported by @davidbors-snyk (Snyk Security Labs)
in #266 and has been resolved
in version 0.19.0.

Starting with fastapi-sso==1.0.0, OAuth state will be backed by a pluggable server-side store
(in-memory by default, with support for external stores such as Redis).

Version 0.16.0 Update: Race Condition Bug Fix & Context Manager Change

A race condition bug in the login flow that could, in rare cases, allow one user
to assume the identity of another due to concurrent login requests was recently discovered
by @parikls.
This issue was reported in #186 and has been resolved
in version 0.16.0.

Details of the Fix:

The bug was mitigated by introducing an async lock mechanism that ensures only one user can attempt the login
process at any given time. This prevents race conditions that could lead to unintended user identity crossover.

Important Change:

To fully support this fix, users must now use the SSO instance within an async with
context manager
. This adjustment is necessary for proper handling of asynchronous operations.

The synchronous with context manager is now deprecated and will produce a warning.
It will be removed in future versions to ensure best practices for async handling.

Impact:

This bug could potentially affect deployments with high concurrency or scenarios where multiple users initiate
login requests simultaneously. To prevent potential issues and deprecation warnings, update to
version 0.16.0 or later and modify your code to use the async with context
.

Code Example Update:

python
# Before (deprecated) with sso: openid = await sso.verify_and_process(request) # After (recommended) async with sso: openid = await sso.verify_and_process(request)

Thanks to both @parikls and the community for helping me identify and improve the
security of fastapi-sso. If you encounter any issues or potential vulnerabilities, please report them
immediately so they can be addressed.

For more details, refer to Issue #186
and PR #189.

Support this project

If you'd like to support this project, consider buying me a coffee ☕.
I tend to process Pull Requests faster when properly caffeinated 😉.

<a href="https://www.buymeacoffee.com/tomas.votava" target="_blank"> <img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>

Supported login providers

Official

  • Google
  • Microsoft
  • Facebook
  • Spotify
  • Fitbit
  • Github (credits to Brandl for hint using accept header)
  • generic (see docs)
  • Notion
  • Twitter (X)

Contributed

See Contributing for a guide on how to contribute your own login provider.

Installation

Install using pip

console
pip install fastapi-sso

Install using poetry

console
poetry add fastapi-sso

Contributing

If you'd like to contribute and add your specific login provider, please see
Contributing file.

Contributors

Showing top 12 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from tomasvotava/fastapi-sso via the GitHub API.Last fetched: 6/26/2026