Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Refresh and Access tokens are not included in the Redis database #39

Open
@8thgencore

Description

During use, I noticed that Refresh and Access tokens do not get into the Redis database

try to connect and see what data is in the redis database

During authorization, after using the get_valid_tokens function, we get an empty set().
And that's why writing to redis doesn't happen

 valid_access_tokens = await get_valid_tokens(redis_client, user.id, TokenType.ACCESS)
 if valid_access_tokens:
 await add_token_to_redis(
 redis_client,
 user,
 access_token,
 TokenType.ACCESS,
 settings.ACCESS_TOKEN_EXPIRE_MINUTES,
 )

I don't understand why the function is called get_refresh_token if we get a new access token at the end.
It would be logical to update the refresh token together too.

@router.post(
 "/refresh-token",
 response_model=IPostResponseBase[TokenRead],
 status_code=201,
)
async def get_refresh_token(
 body: RefreshToken = Body(...),
 redis_client: Redis = Depends(get_redis_client),
) -> Any:
 """
 Gets a refresh token
 """

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions

        AltStyle によって変換されたページ (->オリジナル) /