WWW::Mixi::Scraper::Plugin::NewVideo - WWW::Mixi::Scraper::Plugin::NewVideo documentation


WWW-Mixi-Scraper documentation Contained in the WWW-Mixi-Scraper distribution.

Index


Code Index:

NAME

Top

WWW::Mixi::Scraper::Plugin::NewVideo

DESCRIPTION

Top

This would be equivalent to WWW::Mixi->parse_new_video(). (though the latter is not implemented yet as of writing this)

METHOD

Top

scrape

returns an array reference of

  {
    subject  => 'video title',
    name     => 'someone',
    link     => 'http://video.mixi.jp/view_video.pl?video_id=xxxx&box=xxx',
    time     => 'mm-dd',
    envelope => 'http://video.mixi.jp/img/xxxx.gif'
  }

AUTHOR

Top

Tatsuhiko Miyagawa <miyagawa@gmail.com>

COPYRIGHT AND LICENSE

Top


WWW-Mixi-Scraper documentation Contained in the WWW-Mixi-Scraper distribution.

package WWW::Mixi::Scraper::Plugin::NewVideo;
use strict;
use warnings;
use WWW::Mixi::Scraper::Plugin;
use base qw( WWW::Mixi::Scraper::Plugin::NewFriendDiary );

validator {};

1;

__END__