我想做hotfile帐户检查器
为了开始工作,我想知道如何登录
我尝试了这个
http://www.hotfile.com/login.php?user=myusername&pass=mypassword
但提示用户名/密码组合错误。 :(即使我输入正确的登录数据
谁能帮我一下,谢谢
问候
最佳答案
正如Raffael所说,您必须使用post而不是get,还有一个名为returnto
的隐藏字段,我通常在indy idHttp组件的帮助下完成此操作,如下所示:
var
Sl : TStringList;
begin
Sl := TStringList.Create;
Sl.Add('user=myuser');
Sl.Add('pass=mypassword');
sl.Add('returnto=/');
Memo1.Text := IdHTTP1.Post('http://www.hotfile.com/login.php',Sl);
FreeAndNil(sl);
end;
还请确保使idHttp属性
HandleRedirects = True
关于html - hotfile帐户检查器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1775443/