
WebService::FogBugz - Perl interface to the FogBugz API

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;

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

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

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

You can find documentation for this module with the perldoc command.
perldoc WebService::FogBugz
You can also look for information at:
http://www.fogcreek.com/FogBugz/docs/60/topics/advanced/API.html

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

Takatsugu Shigeta <takatsugu.shigeta@gmail.com>

Copyright (c) 2007, Takatsugu Shigeta <takatsugu.shigeta@gmail.com>. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.