The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

WWW::Livedoor - Perl extension for scraping the livedoor social networking service.

SYNOPSIS

  require WWW::Livedoor;
  $livedoor = WWW::Livedoor->new('[livedoor_id]', '[password]');
  $livedoor->login;
  my $res = $livedoor->get('http://frepa.livedoor.com'); ## Livedoor Login URL
  print $res->content;

DESCRIPTION

WWW::Livedoor uses LWP::RobotUA to scrape livedoor.com This provide login method, get and put method, and some parsing method for user who create livedoor spider.

See "livedoor.pod" for more detail.

SEE ALSO

LWP::UserAgent, WWW::RobotUA, HTTP::Request::Common

AUTHORS

WWW::Livedoor is written by satoru.net <asadedewdew@hotmail.com>

COPYRIGHT

Copyright 2005 Satoru yano.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.