Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Amazon Paa Bundle Laravel Package

caponica/amazon-paa-bundle

View on GitHub
Deep Wiki
Context7

Amazon Product Advertising API Bundle

Amazon PAA integration via a Symfony service wrapper around caponica/amazon-paa.

Installation

Install using composer by adding the following in the require section of your composer.json file:

    "require": {
        ...
        "caponica/amazon-paa-bundle": "dev-master"
    },

Register the bundle in your kernel:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Caponica\AmazonPaaBundle\CaponicaAmazonPaaBundle(),
    );
}

Configuration

The bundle does not add a service to your project by default. To add the service, you will need to define the parameters and then the service itself.

To access multiple marketplaces, create multiple services (one for each marketplace). The simplest way to do this is with parameters (as shown below), but you can use any method you like to load the relevant configuration parameters and pass them to setConfig.

# app/config/parameters.yml
caponica_amazon_paa_config_de:
    access_key:     your_access_key_de
    secret_key:     your_secret_key_de
    associate_tag:  your_associate_tag_de
    domain_suffix:  'de'
caponica_amazon_paa_config_uk:
    access_key:     your_access_key_uk
    secret_key:     your_secret_key_uk
    associate_tag:  your_associate_tag_uk
    domain_suffix:  'co.uk'
# services.yml
    caponica_paa_client_de:
        class:      %caponica_amazon_paa.client.class%
        factory:    [ '%caponica_amazon_paa.client.class%', 'buildFromArray' ]
        arguments:  [ '%caponica_amazon_paa_config_de%' ]
    caponica_paa_client_uk:
        class:      %caponica_amazon_paa.client.class%
        factory:    [ '%caponica_amazon_paa.client.class%', 'buildFromArray' ]
        arguments:  [ '%caponica_amazon_paa_config_uk%' ]

Usage

To access the service, just reference it by the service name you defined above. E.g., from a controller:

/** @var CaponicaAmazonPaa\Client\ApaaClient $apaaClientUk */
$apaaClientUk = $this->container->get('caponica_paa_client_uk');
$itemLookupResponse = $apaaClientUk->callItemLookupFull('B009O3VLPW');
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
sayedenam/sayed-dashboard
milito/query-filter
apiboxsym/user-bundle
apiboxsym/health-check-bundle
jayeshmepani/jpl-moshier-ephemeris-php
elnasnato/laraliveui
labrodev/rest-sdk
sampaui/sampaui
babelqueue/php-sdk
facebook/capi-param-builder-php
babelqueue/symfony
hamzi/corewatch
minionfactory/raw-hydrator
hexters/coinpayment
rjcodes/rjcms
act-training/laravel-permissions-manager
alimarchal/laravel-chart-of-accounts
babenkoivan/elastic-scout-driver
mkwebdesign/filament-watchdog-v5
renatomarinho/laravel-page-speed