WebService::PivotalTracker::Simple - Web API client for PivotalTracker
use WebService::PivotalTracker::Simple;
my $pivotal = WebService::PivotalTracker::Simple->new( token => ... );
my $project_id = ...;
my $story_id = ...;
my $response = $pivotal->get("/projects/$project_id/stories/$story_id");
WebService::PivotalTracker::Simple is very thin API client for Pivotal Tracker.
create instance
call API using GET request
call API using POST request
call API using PUT request
call API using DELETE request
http://www.pivotaltracker.com/help/api/rest/v5, http://search.cpan.org/dist/WWW-PivotalTracker/, http://search.cpan.org/dist/WebService-PivotalTracker/
Copyright (C) Takuya Tsuchida.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Takuya Tsuchida tsucchi@cpan.org