37

我正在尝试从其 ASIN 中获取亚马逊产品的详细信息。产品 API 允许使用 进行 Itemlookup ASIN,但返回值在XML.

我想从客户端对 Itemlookup 进行此调用,因此想进行JSONP调用,但找不到。

我在网上找到了一些JSON使用 XSLT 样式表将 XML 转换为格式的文章:

(a) https://bitbucket.org/basti/python-amazon-product-api/src/tip/examples/json-results.py

我尝试使用这个python-amazon-product-api和这个例子,但我无法得到JSON回报。

(b) http://www.kokogiak.com/gedankengang/2006/05/sumption-amazons-web-api-directly.html

我试图发送的请求是:

http://xml-us.amznxslt.com/onca/xml?AWSAccessKeyId=[ACCESS KEY]&AssociateTag=[ASSOCIATE TAG]&ContentType=text%2Fjavascript&IdType=ASIN&ItemId=B008IEGS9W&Operation=ItemLookup&ResponseGroup=Images%2CItemAttributes&Service=AWSECommerceService&Style=http%3A%2F%2Fforums.delphiforums.com%2Fdelphidocsz%2Famazon%2Fjson.xsl&Timestamp=2012-09-04T06%3A40%3A11Z&Signature=AGOqXvVSeMp3YyVkT4mGNXVx0cFGG%2Bh%2FdAebevbbF9o%3D

请帮助获取带有 .json 格式的 JSON 格式Amazon product API。欢迎任何建议。


OP 可以运行此样式表(未使用输入文档)来确定他的 XSLT 版本。

<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:msxsl="urn:schemas-microsoft-com:xslt"
  exclude-result-prefixes="xsl msxsl">
<xsl:output method="html" indent="yes"/>

<xsl:template match="/">
  <html>
    <head><title>About your XSLT Processor</title></head> 
   <body>
     <ul>
       <li>xsl:version=<xsl:value-of select="system-property('xsl:version')" /></li>
       <li>xsl:vendor=<xsl:value-of select="system-property('xsl:vendor')" /></li>
       <li>xsl:vendor-url=<xsl:value-of select="system-property('xsl:vendor-url')" /></li>
       <li>xsl:product-name=<xsl:value-of select="system-property('xsl:product-name')" /></li>
       <li>xsl:product-version=<xsl:value-of select="system-property('xsl:product-version')" /></li>
       <li>xsl:is-schema-aware=<xsl:value-of select="system-property('xsl:is-schema-aware')" /></li>
       <li>xsl:supports-serialization=<xsl:value-of select="system-property('xsl:supports-serialization')" /></li>
       <li>xsl:supports-backwards-compatibility=<xsl:value-of select="system-property('xsl:supports-backwards-compatibility')" /></li>
       <li>msxsl:version=<xsl:value-of select="system-property('msxsl:version')" /></li>
     </ul>  
   </body>  
 </html>  
</xsl:template>

</xsl:stylesheet>
4

2 回答 2

6

Try either of these ::

  1. Amazon JSON API - This is a ruby webservice to pass through requests and translate the responses to JSON.
  2. Try any of these Javascript functions to convert the XML you already have into JSON :
    1. http://goessner.net/download/prj/jsonxml/
    2. http://davidwalsh.name/convert-xml-json
    3. http://www.fyneworks.com/jquery/xml-to-json/
    4. http://www.thomasfrank.se/xml_to_json.html

I've tried thomasfrank myself. Its easy and works well :)

于 2013-04-04T17:12:53.403 回答
0

(披露)我是 Max,我是 Zinc (zinc.io) 的联合创始人。我们的 API 为定价和产品详细信息页面生成 JSON 响应。以下是对 ASIN 详细信息的典型回复:https ://www.dropbox.com/s/peccdc1m2j34e0d/B018QPI98A.json?dl=0 。如果您有兴趣,请参阅此处:docs.zincapi.com

于 2016-01-28T07:03:34.667 回答