The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Echo::StreamServer::Feeds - Feeds API

SYNOPSIS

  use Echo::StreamServer::Account;
  use Echo::StreamServer::Feeds;

  my $acct = new Echo::StreamServer::Account($appkey, $secret);
  my $client = new Echo::StreamServer::Feeds($acct);

  my $result = $client->register("http://www.example.com");
  my $feeds_xml = $client->list();
  my $result = $client->unregister("http://www.example.com");

DESCRIPTION

The Feeds API is Echo::StreamServer::Feeds and requires an Echo::StreamServer::Account.

Echo Platform allows you to register Activity Stream feeds in the system. Registered URLs will be aggressively polled by the Platform looking for new data and the data will be submitted into the Echo database.

Client Methods

list

Fetch the list of registered feeds for the Echo::StreamServer::Account.

register

Register a new Activity Stream feed URL to update every $interval seconds.

unregister

Remove a certain URL form the list of Activity Stream feeds registered earlier.

SEE ALSO

Echo::StreamServer::Account

AUTHOR

Andrew Droffner, <adroffne@advance.net>

COPYRIGHT AND LICENSE

Copyright (C) 2012 by Andrew Droffner

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.