Skip to content

Commit

Permalink
Add more query parameters to the amazon webservice.
Browse files Browse the repository at this point in the history
  • Loading branch information
nageshs committed Mar 12, 2009
1 parent 865282a commit 0561285
Showing 1 changed file with 39 additions and 14 deletions.
53 changes: 39 additions & 14 deletions amazon/amazon.ecs.xml
@@ -1,17 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<table xmlns="http://query.yahooapis.com/v1/schema/table.xsd">
<meta>
<author>Nagesh Susarla</author>
<documentationURL>http://docs.amazonwebservices.com/AWSECommerceService/2009-01-06/GSG/</documentationURL>
</meta>
<bindings>
<select itemPath="feed.entry" produces="XML">
<urls>
<url>http://ecs.amazonaws.com/onca/xml?Service=AWSECommerceService&amp;AWSAccessKeyId={api_key}&amp;Operation=ItemSearch&amp;SearchIndex=Books&amp;Version=2008-08-19</url>
<inputs>
<key id="Title" type="xs:string" paramType="query" required="true"/>
<key id="api_key" type="xs:string" paramType="path" required="true"/>
</inputs>
</select>
</bindings>
<meta>
<author>Nagesh Susarla</author>
<documentationURL>http://docs.amazonwebservices.com/AWSECommerceService/2009-01-06/GSG/
</documentationURL>
</meta>
<bindings>
<select itemPath="ItemSearchResponse.Items.Item" produces="XML">
<urls>
<url>http://ecs.amazonaws.com/onca/xml?Service=AWSECommerceService&amp;Version=2008-08-19</url>
</urls>
<inputs>
<key id="Operation" type="xs:string" paramType="query" required="false"
default="ItemSearch"/>
<key id="Title" type="xs:string" paramType="query" required="true"/>
<key id="AWSAccessKeyId" type="xs:string" paramType="query" required="true"/>
<key id="SearchIndex" type="xs:string" paramType="query" required="false"
default="Books"/>
<key id="ResponseGroup" type="xs:string" paramType="query" required="false"/>
<key id="AssociateTag" type="xs:string" paramType="query" required="false"/>
<key id="Sort" type="xs:string" paramType="query" required="false"/>
</inputs>
</select>
<select itemPath="ItemSearchResponse.Items.Item" produces="XML">
<urls>
<url>http://ecs.amazonaws.com/onca/xml?Service=AWSECommerceService&amp;Version=2008-08-19</url>
</urls>
<inputs>
<key id="Operation" type="xs:string" paramType="query" required="false"
default="ItemSearch"/>
<key id="Keywords" type="xs:string" paramType="query" required="true"/>
<key id="AWSAccessKeyId" type="xs:string" paramType="query" required="true"/>
<key id="SearchIndex" type="xs:string" paramType="query" required="false"
default="Books"/>
<key id="ResponseGroup" type="xs:string" paramType="query" required="false"/>
<key id="AssociateTag" type="xs:string" paramType="query" required="false"/>
<key id="Sort" type="xs:string" paramType="query" required="false"/>
</inputs>
</select>
</bindings>
</table>

0 comments on commit 0561285

Please sign in to comment.