NAME
WWW::Mixi - Perl extension for scraping the MIXI social networking service.
SYNOPSIS
require WWW::Mixi;
$mixi = WWW::Mixi->new('me@foo.com', 'password');
$mixi->login;
my $res = $mixi->get('home.pl');
print $res->content;
DESCRIPTION
WWW::Mixi uses LWP::RobotUA to scrape mixi.jp. This provide login method, get and put method, and some parsing method for user who create mixi spider.
I think using WWW::Mixi is better than using LWP::UserAgent or LWP::Simple for accessing Mixi. WWW::Mixi automatically enables cookie, take delay 1 second for each access, take care robot exclusions.
See "mixi.pod" for more detail.
SEE ALSO
LWP::UserAgent, WWW::RobotUA, HTTP::Request::Common
CREDITS
WWW::Mixi is developed by Makio Tsukamoto <tsukamoto@gmail.com>.
Thanks to DonaDona (http://hsj.jp/) for methods to post or delete a diary entry, to parse diary list. Topia (http://clovery.jp/) for some bugfixes. shino (http://www.freedomcat.com/) for method to parse diary entry and some bugfixes.
COPYRIGHT
Copyright 2004-2005 Makio Tsukamoto.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.