-
Hi! Any thoughts on how to implement an OAuth2/OIDC to secured by cookie web-app flow? At the moment, I use custom-built proxy that acts as a relying party: receives a callback with auth_code from OP, retrieves tokens from OP, caches them, issues a cookie to browser and checks if session is valid through access_token introspection endpoint periodically. Also it does handle token refresh when access_token expires and back-channel logout requests from OP for fast session invalidation in case of user logged out on OP. I want to achieve the same goal with Oathkeeper and Hydra, do you have any ideas how to achieve it? Or may you provide any advice how do I do my scenario in another way? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi, Is this maybe what you are looking for https://www.ory.sh/oathkeeper/docs/pipeline/mutator? |
Beta Was this translation helpful? Give feedback.
Hi,
Is this maybe what you are looking for https://www.ory.sh/oathkeeper/docs/pipeline/mutator?