Deprecated.
NAME
WebService::LiveJournal::Friend - (Deprecated) LiveJournal friend class
VERSION
version 0.09
SYNOPSIS
use WebService::LiveJournal;
my $client = WebService::LiveJournal->new(
username => $user,
password => $pass,
);
# get the list of your friends
foreach my $friend (@{ $client->get_friend })
{
# $friend isa WS::LJ::Friend
...
}
# get the list of your stalkers, er... I mean people who have you as a friend:
foreach my $friend (@{ $client->get_friend_of })
{
# $friend isa WS::LJ::Friend
...
}
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 friend or user on the LiveJournal server.
ATTRIBUTES
username
The name of the user
fullname
The full name (First Last) of the user
bgcolor
The background color for the user
fgcolor
The foreground color for the user
type
The type of user
mask
The group mask of the user
SEE ALSO
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.