NAME
Net::Zemanta::Preferences - Perl interface to Zemanta user preferences
SYNOPSIS
use Net::Zemanta::Preferences;
my $zemanta = Net::Zemanta::Preferences->new(
APIKEY => 'your-API-key'
);
my $preferences = $zemanta->get();
# URL of the web page for setting preferences
$preferences->{config_url}
# User's Amazon affiliate ID
$preferences->{config_url}
METHODS
- new()
-
Net::Zemanta::Preferences->new(PARAM => ...);
Acceptable parameters:
- APIKEY
-
The API key used for authentication with the service.
- USER_AGENT
-
If supplied the value is prepended to this module's identification string to become something like:
your-killer-app/0.042 Perl-Net-Zemanta/0.1 libwww-perl/5.8
Otherwise just Net::Zemanta's user agent string will be sent.
new()
returnsundef
on error. - get()
-
Returns current settings for the specified API key in form of a hash reference.
See http://developer.zemanta.com for a list of all available settings.
Returns
undef
on error. - error()
-
If the last call to
suggest()
returned an error, this function returns a string containing a short description of the error. Otherwise it returnsundef
.
SEE ALSO
AUTHOR
Tomaz Solc <tomaz@zemanta.com>
COPYRIGHT AND LICENSE
Copyright (C) 2008 by Zemanta ltd.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.