|
|
Posted by Dan on 08/21/06 01:10
David Smithz wrote:
> So is this possible. I need to know if this is feasible. I welcome any
> details comments on this subject particularly if there are any experts in
> this area?
Sure... it's not a very difficult thing to do in Perl, for instance,
using a few commonly-found libraries:
use HTTP::Request::Common;
use HTTP::Cookies;
use LWP::UserAgent;
use HTML::TokeParser;
With these, you can easily make HTTP requests (GET and POST), store and
send back cookies (if a site requires them), parse the resulting HTML
document, and so on.
--
Dan
Navigation:
[Reply to this message]
|