Web Developer at Daffy.org
Blogger at sergiodxa.com
Open Source Author at GitHub.com/sergiodxa
Sponsor me at https://github.com/sponsors/sergiodxa
github.com/sergiodxa/re...
github.com/sergiodxa/re...
Learn how to use them correctly in your Remix or React Router app.
📘 Join the waitlist for the React Router OAuth2 Handbook:
👉 go.sergiodxa.com/x4HNprT
Learn how to use them correctly in your Remix or React Router app.
📘 Join the waitlist for the React Router OAuth2 Handbook:
👉 go.sergiodxa.com/x4HNprT
It contains user identity info and is meant to be consumed by the client, not by the API or auth server. That’s why its aud claim matches the client’s ID.
It contains user identity info and is meant to be consumed by the client, not by the API or auth server. That’s why its aud claim matches the client’s ID.
It’s the only one allowed to accept it and issue a new Access Token. This keeps refresh logic centralized and secure, preventing misuse by clients or other services.
It’s the only one allowed to accept it and issue a new Access Token. This keeps refresh logic centralized and secure, preventing misuse by clients or other services.
It’s the one that will validate and accept the token to give access to protected resources. This way, only the Resource Server can rely on it—it’s not meant for the client or the auth server.
It’s the one that will validate and accept the token to give access to protected resources. This way, only the Resource Server can rely on it—it’s not meant for the client or the auth server.
Client side you can define it once in a separate file and just import it
Client side you can define it once in a separate file and just import it
I use it a lot there to create them so I don’t think about the name
I use it a lot there to create them so I don’t think about the name
I also don't like how it was approached, I always liked that React features were first tested at Meta with their scale, but not RSC
I also don't like how it was approached, I always liked that React features were first tested at Meta with their scale, but not RSC