Deprecated.
The maintainer of this distribution has indicated that it is deprecated and no longer suitable for use.
NAME
WebService::LiveJournal::EventList - (Deprecated) List of LiveJournal events
VERSION
version 0.09
SYNOPSIS
use WebService::LiveJournal::Client;
my $client = WebService::LiveJournal::Client->new(
username => $user,
password => $pass,
);
# $list is an instance of WS::LJ::EventList
my $list = $client->getevents('lastn', howmany => 50);
foreach my $event (@$list)
{
# event is an instance of WS::LJ::Event
...
}
DESCRIPTION
NOTE: This distribution is deprecated. It uses the outmoded XML-RPC protocol. LiveJournal has also been compromised. I recommend using DreamWidth instead (https://www.dreamwidth.org/) which is in keeping with the original philosophy LiveJournal regarding advertising.
This class represents a list of LiveJournal events. It can be used as a array reference.
SEE ALSO
WebService::LiveJournal, WebService::LiveJournal::Event,
AUTHOR
Graham Ollis <plicease@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Graham Ollis.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.