-
Notifications
You must be signed in to change notification settings - Fork 420
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
Ability to verify token without the JWT Secret #171
Comments
@kangmingtay we would need to switch to public/private key JWTs , a level up from secret only JWTs |
@neckaros What @awalias said above is not correct. You are not the only one who is asking for this feature. What you're asking for is actually the same as this issue. And there is already a pull request for this issue. So, when this pull request is merged, the realization of the functionality you are looking for will be achieved. Please help us to get it merged. |
I don't understand why you close this issue. The PR might fix it but as of now it's not fixed right? @koba-ninkigumi i'm not sur how the OIDC relate to my request. Basically i need a public key to verify a token without knowing the private key like in the PR linked by @Alexays (asymetric cryptography) |
As a result of my PR being merged a few days ago, you can now authenticate the id_token by specifying the location of the public key with issuer and the correct client_id approved by issuer. The actual usage is as follows.
If you want to use a public key of your choice, specify the location of the public key in issuer.
The documentation will be available on the supabse website in a few weeks. |
And your request is to do the same thing as the link below, right? In other words, id_token validation on the backend side.
|
Feature request
Is your feature request related to a problem? Please describe.
I have a main application that identify the user and then i need to communicate with many nodejs server application distributed on users computer so it can not hold the JWT Secret but i need to verify caller identify for right management
Describe the solution you'd like
Like with Firebase i would like to be able to have a public key able to verify the JWT token
https://firebase.google.com/docs/auth/admin/verify-id-tokens#verify_id_tokens_using_a_third-party_jwt_library
Describe alternatives you've considered
I'm using firebase
The text was updated successfully, but these errors were encountered: