Amazon with Symfony
Posted on 7月 2nd, 2007 by sudabon
YouTube with Symfonyと同様、PEARを使わずにAmazon ECS Webサービスをsymfonyで利用する方法をメモしておきます。
<?php
class bookComponents extends sfComponents
{
public function executeDefault()
{
$apikey = "YOUR_API_KEI";
$asocid = "YOUR_ASSOCIATE_ID";
$url = sfConfig::get(’app_book_url’) . "Service=AWSECommerceService&AWSAccessKeyId=" . $apikey . "&AssociateTag=" . $asocid
. "&ResponseGroup=Large&Operation=ItemSearch&SearchIndex=Books&locale=JP&Sort=daterank&Version=2007-05-14&BrowseNode=499986";
[…]
Filed under: Webフレームワーク | No Comments »

