-
|
Hello, My setup looks like this: install(Authentication) {
session<UserSession>("session-authentication") {
validate { session ->
session
}
challenge {
call.respondRedirect("/auth/login?origin=${call.request.uri}")
}
}
}So when I make a request to the protected route I tried the following:
Sadly, none of my attemps yielded the wanted behaviour. I hope you can point me in the correct direction |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
I'd expect |
Beta Was this translation helpful? Give feedback.
Hey, sorry for the delay!
It looks like the problem is the missing encoding on the
actionform field in the form:Should be:
This should fix the issue with
c=dgetting dropped 👍