gpt4 book ai didi

德尔福: Connect to yahoo web messenger with idhttp

转载 作者:行者123 更新时间:2023-12-03 15:35:44 28 4
gpt4 key购买 nike

我使用delphi xe2并编写一个简单的代码来连接到yahoo web Messenger但我收到这条消息

If you are seeing this page, your browser settings prevent you from automatically redirecting to a new UR

procedure TForm2.Button1Click(Sender: TObject);
var
idVar:TStringList;
Cookies:string;
begin
idVar:=TStringList.Create; idVar.Clear;
idVar.Add('.tries=1');
idVar.Add('.src=vsu');
idVar.Add('.md5=');
idVar.Add('.hash=');
idVar.Add('.js=');
idVar.Add('.last=');
idVar.Add('promo=');
idVar.Add('.intl=us');
idVar.Add('.bypass=');
idVar.Add('.partner=');
idVar.Add('.u=3p9b5hh7aiqbl');
idVar.Add('.v=0');
idVar.Add('.challenge=J5TQOMzQ9Sr5hwnIHYMiVyI2i1_M');
idVar.Add('.yplus=');
idVar.Add('.emailCode=');
idVar.Add('pkg=');
idVar.Add('stepid=');
idVar.Add('.ev=');
idVar.Add('hasMsgr=0');
idVar.Add('.chkP=Y');
idVar.Add('.done=http://webmessenger.yahoo.com/');
idVar.Add('.pd=wmsgr_ver=0&c=B_VH9oa42e68KuzJEhSlKbE-&ivt=&sg=');
idVar.Add('login='+edt1.Text);
idVar.Add('passwd='+edt2.Text);
idVar.Add('.persistent=y');
Memo1.Text:=idhtp1.Post('https://login.yahoo.com/config/login?',idVar);
end;

procedure TForm2.FormCreate(Sender: TObject);
begin
idhtp1.CookieManager:=idckmngr1;
idhtp1.IOHandler:=idslhndlrscktpnsl1;
idhtp1.RedirectMaximum:=5000;
idhtp1.Request.BasicAuthentication:=False;
idhtp1.HandleRedirects := True;

idslhndlrscktpnsl1.SSLOptions.Method:=sslvSSLv23;
idhtp1.Request.UserAgent:='Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)';
end;

procedure TForm2.idhtp1Redirect(Sender: TObject; var dest: string;
var NumRedirect: Integer; var Handled: Boolean; var VMethod: string);
begin
Handled:=True;
end;

最佳答案

If you are seeing this page, your browser settings prevent you from automatically redirecting to a new URL.

这对于 Fiddler 来说是 HTTP/1.1 200 OK 所以问题不在于重定向。

对我有用的就是在这条消息出现并且我正确登录后重复整个 Button1Click 。在此期间收集的 cookie 是关键,因此您可以尝试仅发送一个请求,但预先设置 cookie。或者,如果没有帮助,只需使用收集的 cookie 重复请求即可。 TIdCookieManager 来救援!

关于德尔福: Connect to yahoo web messenger with idhttp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7956127/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com