hello there,
i tried to log in to youtube account with delphi using IEHTTP component(http://www.myfxboard.com/tiehttp/) but it didnt for
here s the source:
procedure TForm1.Button1Click(Sender: TObject);
begin
http.RequestMethod := 'POST';
http.getStr := 'signIn=submit';
http.ExecuteURL('https://accounts.google.com/ServiceLogin
?uilel=3&service
=youtube&passive=true&continue=http%3A%2F%2Fwww.youtube.
com%2Fsignin%3Faction_handle_signin%3Dtrue%26nomob
iletemp
%3D1%26hl%3Den_US%26next%3D%252F&hl=en
_US<mpl=sso&Email='+edit1.text+'&Passwd='
+edit2.text);
memo1.lines := HTTP.result_sl;
end;
|