How to authenticate in a site via server?

0

There is a login area on this website " link " and would like to know if it is possible to log in via .NET or via client using post or something.

    
asked by anonymous 26.02.2014 / 23:49

1 answer

2

What you need is to develop a web crawler .

You can develop a crawler in two different ways:

  • With a webkit-based solution (the browser engine like Chrome, Safari and Opera), such as CasperJS , which is done over PhantomJS . Solutions like this often emulate what a "real" browser does, such as running JavaScript, requests, AJAX, downloading images, and so on. Usually these solutions are developed in JavaScript.
  • Emulating HTTP requests in programming languages such as PHP, .Net, Java, etc. The problem here is that you would have to emulate every aspect of a real navigation and end up being a lot more laborious - however, your control of information is greater.
26.02.2014 / 23:55