forked from HarryMWinters/fastapi-oidc
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
72 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from fastapi_third_party_auth.auth import Auth # noqa | ||
from fastapi_third_party_auth.grant_types import GrantType # noqa | ||
from fastapi_third_party_auth.idtoken_types import IDToken # noqa | ||
from fastapi_third_party_auth.idtoken_types import KeycloakIDToken # noqa | ||
from fastapi_third_party_auth.idtoken_types import OktaIDToken # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[tool.poetry] | ||
name = "fastapi-oidc" | ||
name = "fastapi-third-party-auth" | ||
version = "0.0.0" | ||
description = "A simple library for parsing and verifying externally issued OIDC ID tokens in fastapi." | ||
authors = ["HarryMWinters <[email protected]>"] | ||
description = "Simple library for using a third party authentication service like Keycloak or Auth0 with FastAPI" | ||
authors = ["HarryMWinters <[email protected]>", "Richard Löwenström <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
homepage = "https://github.com/HarryMWinters/fastapi-oidc" | ||
repository = "https://github.com/HarryMWinters/fastapi-oidc" | ||
documentation = "https://fastapi-oidc.readthedocs.io/en/latest/" | ||
homepage = "https://github.com/aiwizo/fastapi-third-party-auth" | ||
repository = "https://github.com/aiwizo/fastapi-third-party-auth" | ||
documentation = "https://fastapi-third-party-auth.readthedocs.io/en/latest/" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
|
@@ -37,4 +37,4 @@ build-backend = "poetry.masonry.api" | |
profile = "black" | ||
force_single_line = "True" | ||
known_first_party = [] | ||
known_third_party = ["cachetools", "cryptography", "fastapi", "jose", "jwt", "pydantic", "pytest", "requests", "starlette", "uvicorn"] | ||
known_third_party = ["cachetools", "cryptography", "fastapi", "jose", "jwt", "pydantic", "pytest", "requests", "starlette", "uvicorn"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters