| Programming C# C++ (7) Delphi (604) Java (8) JavaScript (55) perl (40) mysql (3) perl CGI (3) php (12) VBScript (1) Visual Basic (1) |
Have a perl script log in and retrieve some data
Question: I have to automate a process where a user logs in to a site and then retrieves some news. I want to use "wget" to download the news file, but I can't seem to get it to login (the login form issues a POST request, and the processing script does not accept the data passed as a GET request).Answer: I would avoid using 'wget' and instead opt for the LWP suite of modules. They should make retrieving a remote file simple (at least over http). Take a look at the documentation and examples; it is very straight forward.LWP is available from CPAN: Comments:
|