| WebService-RTMAgent documentation | view source | Contained in the WebService-RTMAgent distribution. |
WebService::RTMAgent - UserAgent for the RememberTheMilk API
$ua = WebService::RTMAgent->new;
$ua->api_key($key_provided_by_rtm);
$ua->api_secret($secret_provided_by_rtm);
$ua->init;
$url = $ua->get_auth_url; # then do something with the URL
$res = $ua->tasks_getList('filter=status:incomplete');
...
WebService::RTMAgent is a Perl implementation of the rememberthemilk.com API.
All API methods documented at http://www.rememberthemilk.com/services/api/ can be called as methods, changing dots for underscores and optionnaly taking off the leading 'rtm': $ua->auth_checkToken, $ua->tasks_add, etc.
Parameters should be given as a list of strings, e.g.:
$ua->tasks_complete("list_id=4231233", "taskseries_id=124233", "task_id=1234");
Refer to the API documentation for each method's parameters.
Return values are the XML response, parsed through XML::Simple. Please refer to XML::Simple for more information (and Data::Dumper, to see what the values look like) and the sample rtm script for examples.
If the method call was not successful, undef is returned, and an error
message is set which can be accessed with the error method:
$res = $ua->tasks_getList; die $ua->error unless defined $res;
Please note that at this stage, I am not very sure that this is the best way to implement the API. "It works for me," but:
The object returned by new is also a LWP::UserAgent. This means you can configure it the same way, in particular to cross proxy servers:
$ua = new WebService::RTMAgent;
$ua->api_key($key);
$ua->api_secret($secret);
$ua->proxy('http', 'http://proxy:8080');
$ua->init;
$list = $ua->tasks_getList;
Incidentally, this is the reason why the init method exists: init needs to access the network, so its work cannot be done in new as that would leave no opportunity to configure the LWP UserAgent.
Creates a new agent.
Set the API key and secret. These are obtained from the people are RememberTheMilk.com.
Sets what type of traces the module should print. You can use 'netout' to print all the outgoing messages, 'netin' to print all the incoming messages.
Get a message describing the last error that happened.
Performs authentication with RTM and various other book-keeping initialisations.
Performs the beginning of the authentication: this returns a URL to which the user must then go to allow RTMAgent to access his or her account.
This mecanism is slightly contrieved and designed so that users do not have to give their username and password to third party software (like this one).
Returns the transactions which we know how to undo (unless data has been lost, that's all the undo-able transaction that go with the timeline that is saved in the state file).
The value returned is a list of { id, op, [ params ] } with id the transaction id, op the API method that was called, and params the API parameters that were called.
Removes an undo entry.
Don't use those and we'll stay friends.
Returns the md5 signature for signing parameters. See RTM Web site for details. This should only be useful for the module, don't use it.
Signs the parameters, performs the request, returns a parsed XML::Simple object.
XML file containing runtime data: frob, timeline, authentication token. This file is overwritten on exit, which means you should only have one instance of RTMAgent (this should be corrected in a future version).
rtm, example command-line script. LWP. XML::Simple.
http://www.rutschle.net/rtm
Written by Yves Rutschle <rtm@rutschle.net>
This software is free software; you may redistribute it and/or modify it under the same terms as Perl itself.
| WebService-RTMAgent documentation | view source | Contained in the WebService-RTMAgent distribution. |