Amazon-CreatorsAPI

 view release on metacpan or  search on metacpan

example/jp_get_items.pl  view on Meta::CPAN

#!/usr/bin/env perl

use strict;
use warnings;
use Amazon::CreatorsAPI;
use Data::Dumper;

# Locale Reference of Japan
# https://affiliate-program.amazon.com/creatorsapi/docs/en-us/locale-reference/japan

my $api = Amazon::CreatorsAPI->new(
    "{credential_id}",
    "{credential_secret}",
    "{credential_version}",
    {
        partner_tag => "{partner_tag}",
        marketplace => 'www.amazon.co.jp',
    },
);

example/us_get_browser_nodes.pl  view on Meta::CPAN

#!/usr/bin/env perl

use strict;
use warnings;
use Amazon::CreatorsAPI;
use Data::Dumper;

# Locale reference of US
# https://affiliate-program.amazon.com/creatorsapi/docs/en-us/locale-reference/united-states

my $api = Amazon::CreatorsAPI->new(
    "{credential_id}",
    "{credential_secret}",
    "{credential_version}",
    {
        partner_tag => "{partner_tag}",
    },
);

lib/Amazon/CreatorsAPI.pm  view on Meta::CPAN

=head2 get_variations($api_params)

=head2 search_items($api_params)

=head2 operation($operation, $api_params)

C<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


=head1 REPOSITORY

=begin html

<a href="https://github.com/bayashi/Amazon-CreatorsAPI/blob/main/README.md"><img src="https://img.shields.io/badge/Version-0.01-green?style=flat"></a> <a href="https://github.com/bayashi/Amazon-CreatorsAPI/blob/main/LICENSE"><img src="https://img.shi...

=end html



( run in 1.648 second using v1.01-cache-2.11-cpan-97f6503c9c8 )