-
A client needs to be able to dynamically generate the redirect_uris on their end, so they are not able to give exact redirect_uris for us to configure in Hydra. Is their any way with Hydra or a known workaround/solution to solve this issue? Thanks a lot for any help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
From the OAuth2.0 spec:
I think what you are looking for is achieved in Hydra using the From Implementing Login, Consent & Logout UI:
I hope that clears it up a bit 🐝 |
Beta Was this translation helpful? Give feedback.
From the OAuth2.0 spec:
I think what you are looking for is achieved in Hydra using the
state
parameterThe state parameter will be appended to the redirect URL despite it not being whitelisted.
From Implementing Login, …