Web authentication by code
-
Hi all, Until some months ago, I had a tool that could log into this web: http://www.infojobs.net/empresa_login.cfm[^] Using C# (desktop tool), i could login doing: NameValueCollection postdata = new NameValueCollection(); postdata.Add("e_email", name); postdata.Add("e_password", password); postdata.Add("tipoLogin", "1"); byte[] data = webClient.UploadValues(new Uri(_loginPage), postdata); After that, I saved the cookie and I could do other operations. Buf since 3-4 months, this code doesn't work. I think they have changed the authentication process, but i'm not able to identify the changes. With firebug I can see that the login form is the same. Does anybody know what have they modified? Thanks in advanced. PS: Sorry if this is not the place to post this thread. It's C# Code, but it's more a web problem.
-
Hi all, Until some months ago, I had a tool that could log into this web: http://www.infojobs.net/empresa_login.cfm[^] Using C# (desktop tool), i could login doing: NameValueCollection postdata = new NameValueCollection(); postdata.Add("e_email", name); postdata.Add("e_password", password); postdata.Add("tipoLogin", "1"); byte[] data = webClient.UploadValues(new Uri(_loginPage), postdata); After that, I saved the cookie and I could do other operations. Buf since 3-4 months, this code doesn't work. I think they have changed the authentication process, but i'm not able to identify the changes. With firebug I can see that the login form is the same. Does anybody know what have they modified? Thanks in advanced. PS: Sorry if this is not the place to post this thread. It's C# Code, but it's more a web problem.
Why don't you ask infojobs, presumably they support this process.
-
Why don't you ask infojobs, presumably they support this process.