Есть страничка с формой:
<form xmlns="" method="post" id="cablog" class="forma just" action="/session/login"><fieldset><div class="clear"><div class="lcol">
<div class="fe clear">
<label for="login_credentials_login">Логин:</label><input type="text" maxlength="10" size="30" name="login_credentials[login]" id="login_credentials_login" class="text" value="">
</div>
<div class="fe clear">
<label for="login_credentials_password">Пароль:</label><input type="password" size="30" maxlength="16" name="login_credentials[password]" id="login_credentials_password" class="text password">
</div>
<div class="btn clear">
<p><a href="/account/forgot_password">Забыли пароль?</a></p>
<input type="submit" value="Войти" name="commit" title="Войти" class="butt submit">
</div>
</div></div></fieldset></form>
Я хочу залогиниться через баш и грепнуть баланс.
Делаю как здесь: http://www.youtube.com/watch?v=Im72HDtqkFs
curl -d "login_credentials[login]=xxx&login_credentials[password]=xxx&submit=commit" https://my.onlime.ru/session/login
Но безрезультатно. Смотрю этот test — там даже ошибки нет.
Что нужно исправить в этой команде, чтобы она заработала?