WebService::FogBugz - Perl interface to the FogBugz API


WebService-FogBugz documentation  | view source Contained in the WebService-FogBugz distribution.

Index


NAME

Top

WebService::FogBugz - Perl interface to the FogBugz API

SYNOPSIS

Top

    use WebService::FogBugz;

    my $fogbugz = WebService::FogBugz->new({
        email    => 'yourmail@example.com',
        password => 'yourpassword',
        base_url => 'http://yourfogbugz.example.com/api.asp',
    });

    $fogbugz->logon;

    # your request.
    my $xml = $fogbugz->request_method('search', {
        q => 'WebService',
    });

    $fogbugz->logoff;

DESCRIPTION

Top

This module provides you Perl interface for FogBugz API. FogBugz is a project management system.

METHODS

Top

new([%options]) this method returns an instance of this module. and this method allows following arguments; - email (almost your email address for log in to FogBugz) - password - base_url (your fogbugz api's URL.Probably http://www.example.com/fogbugz/api.asp. For example, if the URL is http://www.example.com/fogbugz, hit http://www.example.com/fogbugz/api.xml.And see the url field of response xml.)

logon Retrieves an API token from Fogbugz.

logoff Log off from FogBugz.

request_method the 1st argument is name of command. FogBugz 6.0 supports many commands. You will find from FogBugz Online Documantation by using keyword of 'cmd'.

the 2nd argument is parameters of command of 1st argument.

BUGS

Top

Please report any bugs or feature requests to bug-webservice-fogbugz@rt.cpan.org, or through the web interface at http://rt.cpan.org.

SUPPORT

Top

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

    perldoc WebService::FogBugz

You can also look for information at:

* FogBugz Online Documentation - API

http://www.fogcreek.com/FogBugz/docs/60/topics/advanced/API.html

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/WebService-FogBugz

* CPAN Ratings

http://cpanratings.perl.org/d/WebService-FogBugz

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=WebService-FogBugz

* Search CPAN

http://search.cpan.org/dist/WebService-FogBugz

SEE ALSO

Top

http://www.fogcreek.com/FogBugz/docs/60/topics/advanced/API.html

AUTHOR

Top

Takatsugu Shigeta <takatsugu.shigeta@gmail.com>

LICENCE AND COPYRIGHT

Top


WebService-FogBugz documentation  | view source Contained in the WebService-FogBugz distribution.