-
Hello. I apologize if this is a very basic question, but I'm trying to write a Java Quarkus REST API and having trouble figuring out how to think about Supabase Auth. I understand that Supabase Auth will provide my client with a JWT, which I can then validate on the REST using the JWT Secret. I have this working. It seems like there are other ways I should consider though:
Are these routes that I can take with Supabase Auth? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Did you figure it out? |
Beta Was this translation helpful? Give feedback.
-
Current method as of Quarkus 3.26.4
Then set
Can verify this via
should have the JWT populated. |
Beta Was this translation helpful? Give feedback.
Current method as of Quarkus 3.26.4
Then set
application.properties
:Can verify this via
POST https://{{SUPABASE_PROJECT}}.supabase.co/auth/v1/token?grant_type=password
and checking that JWT is indeed ES256. Then in Quarkus,should have the JWT populated.