Hi there! I'm trying to submit a form with the Kto...
# ktor
a
Hi there! I'm trying to submit a form with the Ktor HttpClient but I get
RedirectResponseException: Unhandled redirect: <http://127.0.0.1:9000/login>. Status: 302 Found
This is nice because there is supposed to be a redirect but I can't figure out how to fix this. I'd like to check that the user was redirected to
/
after login.
s
There is something about followRedirects in https://ktor.io/clients/http-client/engines.html#apache . Maybe it can help
a
thanks