NAME

WWW::Vimeo::Simple::Activity - Object-oriented Vimeo Simple API interface.

VERSION

Version 0.01

SYNOPSIS

This module is a full object-oriented implementation of the Vimeo Simple API. The specifications are available at http://vimeo.com/api/docs/simple-api.

Activity requests implementation.

    use WWW::Vimeo::Simple;

    my $foo = WWW::Vimeo::Simple->new();

    my $activity = $foo->activity( $username );

    $activity->user_did;
    
    foreach (@{$activity->data}) {
	print $_ -> {'type'};
    }

METHODS

new( $user_name )

Create a WWW::Vimeo::Simple::Activity object

user_did

Fetch activities by the user

happened_to_user

Fetch activities on the user

contacts_did

Fetch activities by the user's contacts

happened_to_contacts

Fetch activities on the user's contacts

everyone_did

Fetch activities by everyone

make_url( $request )

Build a Vimeo Simple API url

data

Return fetched data

AUTHOR

Alessandro Ghedini, <alexbio at cpan.org>

BUGS

Please report any bugs or feature requests to bug-www-vimeo-simple at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Vimeo-Simple. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc WWW::Vimeo::Simple::Activity

You can also look for information at:

LICENSE AND COPYRIGHT

Copyright 2010 Alessandro Ghedini.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.