I'm following this tutorial to create an api backend.
I use firebase authentication:
- user input email and password at frontend
- front sends the info to firebase
- firebase auth user and return token
- front stores the token
- for any url that needs auth, front sends the token in
Authorization
header (Bearer xxx
) - server side firebase checks the token
The tutorial shows how to do this with a password:
# creating a dependency
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token")
async def get_current_user(token: str = Depends(oauth2_scheme)):
user = fake_decode_token(token)
return user
But since I'm using firebase, there is no /token
for getting token with password.
I can parse the token by creating a custom dependency, like:
async def parse_token(auth_token:str = Header(...)):
token = auth_token.split(' ')[1]
return token
async def get_current_user(token: str = Depends(parse_token)):
# check the token with firebase auth
user = auth.verify_id_token(token)
return user
But now I have to check everything and return exceptions manually.
Is there a FastAPI way to do this?
Simply ignore it.
The
/token
endpoint is used to authenticate and generate the token (on successful attempt). It's just a login page/form. You simply skip that part and use a dependency that will perform the check.Of course, you have to follow the same name and positioning of the
OAuth2Password
stuff.Remember, HTTP is stateless, and tokens are used to remember that a user has already provided identification. If you have a valid token, you can also swap it on another machine and use it (unless there are some security cookies and machine-related information is stored within the cookie).
If you go on with the tutorial that you linked, you'll get to the final code with the authentication. Simply provide the firebase token in the
"Authorization: Bearer {token}"
of your requests from the frontend to the backend and it will work.Below the link to the documentation.
https://fastapi.tiangolo.com/tutorial/security/simple-oauth2/