Mark
01/24/2021, 3:18 PMlocalhost:8080/login/github
, in my Ktor I have (following the example from the docs):
location<Login>() {
// This never triggers when clicking on cancel
param("error") {
println("error occurred")
call.respondRedirect("/")
}
handle {
// Etc, success works fine
}
I assume either I am not doing the call back correctly or maybe it won't work for localhost? But the param("error")
is never really called.