NAME
Mojolicious::Plugin::Disqus - Interface with Disqus comments from your
Mojolicious app
VERSION
version 1.21
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)
secure (optional) When set, L 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/HELPERS
disqus(url, %args)
This helper will fetch a Disqus API endpoint by url. %args contains the arguments that need to be passed
to the request. This helper is a shortcut for $app->_disqus->fetch(url, %args).
For a full list of supported endpoints, please see L.
AUTHOR
Ben van Staveren, ""
BUGS/CONTRIBUTING
Please report any bugs or feature requests through the web interface at
. If
you want to contribute changes or otherwise involve yourself in
development, feel free to fork the Git repository from
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.