This is my last question for this I hope. I am using $mech->follow_link to try to download a file. For some reason though the file saved is just the page I first pull up and not the link I want to follow. Is this the correct way I should download the file from the link? I do not want to use wget.

    #!/usr/bin/perl -w
    use strict;
    use LWP;
    use WWW::Mechanize;
    my $now_string = localtime;
    my $mech = WWW::Mechanize->new();
    my $filename = join(' ', split(/\W++/, $now_string, -1));
    $mech->credentials( '***********' , '************'); # if you do need to supply     server and realms use credentials like in [LWP doc][2]
$mech->get('http://datawww2.wxc.com/kml/echo/MESH_Max_180min/') or die "Error: failed to load the web page";
$mech->follow_link( url_regex => qr/MESH/i ) or die "Error: failed to download content";
$mech->save_content("$filename.kmz");
link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Steps to try

  1. First print the contents from your get, to make sure you're reaching a valid HTML page
  2. Make sure the link you're going to is the third link called "MESH" (case-sensitive?)
  3. Print the contents from your second get
  4. Print the filename to make sure it's wellformed
  5. Check that the file was created successfully

Additional

  • You don't need the unless in either case - it's going to work, or it's going to die

Example

#!/usr/bin/perl -w

use strict;
use WWW::Mechanize;

   sub main{

      my $url    =  qq(http://www.kmzlinks.com);
      my $dest   =  qq($ENV{HOME}/Desktop/destfile.kmz);

      my $mech   =  WWW::Mechanize->new(autocheck => 1);

      # if needed, pass your credentials before this call
      $mech->get($url);
      die "Couldn't fetch page" unless $mech->success;

      # find all the links that have urls to kmz files
      my @links  =  $mech->find_all_links( url_regex => qr/(?:\.|%2E)kmz$/i );

      foreach my $link (@links){               # (loop example)

         # use absolute URL path of the link to download file to destination
         $mech->get($link->url_abs, ':content_file' => $dest);

         last;                                 # only need one (for testing)
      }     
   }

   main();
link|improve this answer
how do you print the contents? I was trying print $mech->content( format => 'text' ); but it does not seem to work – shinjuo Jul 7 '10 at 19:55
1  
you can use print $mech->response()->content(), print $mech->content(), or even print %{$mech->get($url)}. The format=>'text' will strip the HTML, which if it's an XML document with just elements and attributes, it might strip everything. – vol7ron Jul 7 '10 at 20:18
1  
try a manual download. After $mech->get('http://datawww2.wxc.com/kml/echo/MESH_Max_180min/');, type $mech->get($urlOfDynamicLink); print $mech->contents(); – vol7ron Jul 7 '10 at 22:01
1  
you can also save the file in one step: $mech->get( 'http://datawww2.wxc.com/kml/echo/MESH_Max_180min/MESH_Max_180min_20100707-13053‌​6.kmz', ':content_file' => '20100707_130536.kmz' ); – vol7ron Jul 8 '10 at 0:30
1  
It could be, I'm not sure what you had before and it's difficult to see what the page is doing when I can't access it. If the URLs had relative paths, then possibly. Also, I think $mech would be empty if you chose to store the HTML file with the first ->get() using :content_file=>. There's many reasons why it might not have worked. – vol7ron Jul 8 '10 at 6:34
show 16 more comments
feedback

Are you sure you want the 3rd link called 'MESH'?

link|improve this answer
no I did not realize until I went back and looked that it was looking for that specific link. It still does not work correctly but its a start. Thanks – shinjuo Jul 7 '10 at 19:57
feedback

Change if to unless.

link|improve this answer
still downloads the same page and gives no errors – shinjuo Jul 7 '10 at 19:02
Change the other if to unless. – mcandre Jul 7 '10 at 19:05
I changed both. I updated the code so you can see it – shinjuo Jul 7 '10 at 19:06
Try removing or die... – mcandre Jul 7 '10 at 19:25
feedback

Your Answer

 
or
required, but never shown

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