hey all, running into what is probably a small issue that I can’t quite figure out when implementing my own custom login/consent flow for oauth2.
I have a login URL, which looks like this: https://{project_id}.
projects.oryapis.com/oauth2/auth?response_type=code&client_id={client_id}&redirect_uri={redirect}&prompt=login&state=12345&scope=openid&max_age=1000
it works fine for going through the whole login/consent flow, and I get redirected to my redirect with an access code. However, when I go to that URL again I expect it to automatically redirect me to my redirect, since I am logged in already. When accepting the login/consent request I am setting remember and remember_for, so from my understanding it shouldn’t need me to log in again.
if anyone knows when I should/should not expect to be taken to the login screen vs. just straight to the redirect that would be helpful!