我有这个表单,当我用我的用户名和密码提交时,登录工作:
<form action="https://website.de/login/index.php" method="post" >
<input name="username" id="username" size="14" type="text">
<input name="password" id="password" size="14" value="" type="password">
<input id="loginbtn" value="Login" type="submit">
</form>
现在我尝试使用rest-client登录网站:
require 'rest_client'
response = RestClient.post 'https://website.de/login/index.php', :username => 'Horst', :password => 'Secret'
puts response.code
不知怎的,这不会工作我得到状态代码200但成功登录将是303!
我认为问题在于它不是http
而是https
所以我该如何添加ssl?
感谢