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

Net::NicoVideo::UserAgent - Decorate LWP::UserAgent with requests to access to Nico Nico Douga

SYNOPSIS

use LWP::UserAgent;
use Net::NicoVideo::UserAgent;

my $ua = Net::NicoVideo::UserAgent->new(
    LWP::UserAgent->new # or other custom UA by your own needs
    );

# $flv is a Net::NicoVideo::Response::Flv
my $flv = $ua->request_flv("smNNNNNNNN");

# Net::NicoVideo::Response is decorated with HTTP::Response
$flv->is_success

DESCRIPTION

Decorate LWP::UserAgent with requests to access to Nico Nico Douga.

SEE ALSO

Net::NicoVideo::Decorator Net::NicoVideo::Request Net::NicoVideo::Response