NAME
Mojolicious::Plugin::Disqus - Interface with Disqus comments from your Mojolicious app
VERSION
Version 0.01
SYNOPSIS
use Mojolicious::Plugin::Disqus
$self->plugin('disqus' => {
'api_secret' => 'your_api_secret',
%options,
});
CONFIGURATION
The following options can be set for the plugin:
api_secret (REQUIRED) Your Disqus API secret (L<http://disqus.com/api/applications/>)
secure (optional) When set, L<Net::Disqus> will use SSL to communicate with the Disqus API
pass_api_errors (optional) When set, any API errors are returned as a JSON object instead of
throwing an exception.
METHODS
For a full list of supported methods, please see http://disqus.com/api/docs/. You can call these methods as follows (using /applications/listUsage as an example):
$app->disqus->applications->listUsage();
$app->disqus->fetch('/applications/listUsage');
The above two are equivalent. See the Net::Disqus documentation, as well as the Disqus site at http://disqus.com/api/docs for more information.
AUTHOR
Ben van Staveren, <madcat at cpan.org>
BUGS
Please report any bugs or feature requests through the web interface at https://bitbucket.org/xirinet/mojolicious-plugin-disqus/issues.
CONTRIBUTING
If you want to contribute changes or otherwise involve yourself in development, feel free to fork the Mercurial repository from http://bitbucket.org/xirinet/mojolicious-plugin-disqus/ and make pull requests for any patches you have.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Mojolicious::Plugin::Disqus
You can also look for information at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
Copyright 2011 Ben van Staveren.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.