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::Mixi::OO - LWP::UserAgent based Mixi Access Helper Module (WWW::Mixi compatible class)

SYNOPSIS

  use WWW::Mixi::OO;
  my $mixi = WWW::Mixi::OO->new('foo@example.com', 'password');
  $mixi->login;
  my $res = $mixi->page('home');
  print $res->content;
  my @friends = $mixi->page('list_friend')->fetch;

DESCRIPTION

mixi (http://mixi.jp/) is a social network service in Japan.

This module provides WWW::Mixi compatible interface. use WWW::Mixi::OO::Session for real WWW::Mixi::OO's interface.

METHODS

new
  my $mixi = WWW::Mixi::OO->new(
                 $email, $password,
                 [-rewrite => \&rewriter]);

WWW::Mixi::OO constructor.

BUGS

This module did not complete yet.

SEE ALSO

WWW::Mixi::OO::Session

WWW::Mixi (http://digit.que.ne.jp/work/index.cgi?Perl%a5%e2%a5%b8%a5%e5%a1%bc%a5%eb%2fWWW%3a%3aMixi in Japanese)

http://mixi.jp/

AUTHOR

Topia <topia@clovery.jp>

COPYRIGHT AND LICENSE

Copyright (C) 2005 by Topia.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.