vote up 1 vote down star
1

Hi,

I am writing a perl script to access intranet page with authentication. Is there any perl module to access intranet web page?

Thanks, Yogesh

flag

0% accept rate

3 Answers

vote up 7 vote down

Generally THE way to deal with it is to use WWW::Mechanize. For starters, install WWW::Mechanize::Shell, and run:

perl -e 'use WWW::Mechanize::Shell; shell'

then you can use "help", "get", "open", "fillout" and other cool commands.

When you'll finish basic work (like going to page, logging in, some navigation on the pages) type command "script" - which will generate working perl program that will repeat the same steps you just did interactively. You can copy/paste this program to some .pl file, and modify it to suit your needs.

link|flag
Excellent module I use it for intranet data pulling and subsidence parsing all the time. Good answer. – Copas May 16 at 15:21
vote up 5 vote down

Take a look at LWP and Authentication with LWP.

link|flag
Dear down voter, please leave a comment, so I have a chance of fixing any mistakes I may have made. – Brian Rasmussen May 12 at 10:06
vote up 5 vote down

There is no difference between an intranet and the Internet as far as software is concerned - they use the same technology, one is just private.

How you deal with the authentication depends on how the authentication is implemented. WWW:Mechanize will probably walk through most things, but I have a nagging memory of some proprietry Microsoft system that lets Internet Explorer use the user's domain authentication details, if you are using that then you might find Win32::IE::Mechanize will handle that for you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.