Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refresh Token Implementation #217

Open
rsemihkoca opened this issue May 13, 2024 · 0 comments
Open

Refresh Token Implementation #217

rsemihkoca opened this issue May 13, 2024 · 0 comments

Comments

@rsemihkoca
Copy link

I am having difficulty finding the refresh token section in the documentation.

I have an application where I sign-in and sign-up with just email and password.

I can get IdToken and refresh token using the signinwithemailpasswordasync method.

I want to be able to return a new idtoken and refresh token thanks to the "/refresh" endpoint. Before doing this, I want to check whether the previous Idtoken and refresh token are valid. Pseudo code:

signinwithemailandpassword -> Idtoken1, refreshtoken1

/refresh endpoint (Idtoken1, refreshtoken1)
check (Idtoken1 is valid)
check (refreshtoken1 is valid) like user id matches or expires_in is valid

and return new IdToken2 and refresh token2

I use default in memory as repository. It is not necessary for me to store credentials right now. I want to open PR if I can solve the current problem

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant