NAME
Amazon::CreatorsAPI - The Amazon Creators API Helper
SYNOPSIS
use Amazon::CreatorsAPI;
use Data::Dumper;
my $api = Amazon::CreatorsAPI->new(
"{credential_id}",
"{credential_secret}",
"{credential_version}",
{
partner_tag => "{partner_tag}",
marketplace => '{www.amazon.com}',
},
);
my $res = $api->search_items({
keywords => "{search_keyword}",
resources => [
'itemInfo.title',
],
});
print Dumper($res);
DESCRIPTION
What is the Amazon Creators API?
https://affiliate-program.amazon.com/creatorsapi/docs/en-us/introduction
See example/ directory of this module.
https://github.com/bayashi/Amazon-CreatorsAPI/tree/main/example
METHODS
new
constructor
get_browse_nodes($api_params)
get_items($api_params)
get_variations($api_params)
search_items($api_params)
operation($operation, $api_params)
operation method is the low level interface to call Amazon Creators API for operations not yet wrapped by helper methods in this module.
Amazon Creator API Reference: https://affiliate-program.amazon.com/creatorsapi/docs/en-us/api-reference
Locale Reference: https://affiliate-program.amazon.com/creatorsapi/docs/en-us/locale-reference
REPOSITORY
Amazon::CreatorsAPI is hosted on github: http://github.com/bayashi/Amazon-CreatorsAPI
I appreciate any feedback :D
AUTHOR
Dai Okabayashi
LICENSE
Amazon::CreatorsAPI is free software; you can redistribute it and/or modify it under the terms of the Artistic License 2.0. (Note that, unlike the Artistic License 1.0, version 2.0 is GPL compatible by itself, hence there is no benefit to having an Artistic 2.0 / GPL disjunction.) See the file LICENSE for details.