I'm still fighting with programmatically logging in to one site, My code:
val h = new Http
val req = url("http://www.smanager.pl/logowanie.php") <<
Map("username" -> "MYUSERNAME", "password" -> "MYPASSWORD")
val handler = req.POST >>> System.out print(h(handler))
Username and password are correct for sure in the script, but on system.out
I see the html of the login form. It doesn't work. Any have idea how to deal with it?