damonjones / insig-aws-bundle
Symfony InsigAWSBundle
Installs: 28
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
- symfony/validator: >=2.1
This package is not auto-updated.
Last update: 2025-04-21 14:50:15 UTC
README
This is a Symfony 2 bundle which can be used to query Amazon's Product Advertising API.
Requirements
PHP 5.3+ with libxml
An Amazon AWS account (or developer account)
Client Configuration
Add your account credentials to your app/config/config.yml (or a configuration file included by it):
insig_aws:
client:
access_key_id: ACCESS_KEY_ID
secret_access_key: SECRET_ACCESS_KEY
Basic Usage
$client = $this->get('insig_aws.client');
$request = new Insig\AWSBundle\ItemLookupRequest();
$request->setASIN('B0051QVESA');
$response = $client->execute($request);
$item = $response->asXml()->Items->Item;
Authors
Damon Jones - damon@insig.net
License
Insig AWS Bundle is licensed under the MIT License - see the LICENSE file for details