关于带有 bottlenose 的亚马逊产品 API 的错误

问题描述 投票:0回答:1

我正在使用亚马逊产品 API 的 bottlenose。我只是创建了一些代码并遇到了以下错误:

我创建的代码:

ak = "my access key"   
sk = "My secret key"

import bottlenose
amazon = bottlenose.Amazon(ak, sk)
response=amazon.ItemLookup(ItemId="0596520999", ResponseGroup="Images", SearchIndex="Books", IdType="ISBN",Style="http://xml2json-xslt.googlecode.com/svn/trunk/xml2json.xslt") % reference from the README file of bottlenose

这是我得到的错误:

Traceback (most recent call last):
  File "C:/Python27/amazontest", line 6, in <module>
    response=amazon.ItemLookup(ItemId="0596520999", ResponseGroup="Images", SearchIndex="Books", IdType="ISBN",Style="http://xml2json-xslt.googlecode.com/svn/trunk/xml2json.xslt")
  File "C:\Users\supercoco\AppData\Roaming\Python\Python27\site-packages\bottlenose\api.py", line 104, in __call__
    response = urllib2.urlopen(api_request)
  File "C:\Python27\lib\urllib2.py", line 126, in urlopen
    return _opener.open(url, data, timeout)
  File "C:\Python27\lib\urllib2.py", line 400, in open
    response = meth(req, response)
  File "C:\Python27\lib\urllib2.py", line 513, in http_response
    'http', request, response, code, msg, hdrs)
  File "C:\Python27\lib\urllib2.py", line 438, in error
    return self._call_chain(*args)
  File "C:\Python27\lib\urllib2.py", line 372, in _call_chain
    result = func(*args)
  File "C:\Python27\lib\urllib2.py", line 521, in http_error_default
    raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
HTTPError: HTTP Error 400: Bad Request

有人知道是什么问题吗?我很感激你的回答!

谢谢

-抄送

python amazon-product-api bottlenose
1个回答
0
投票

amazon = bottlenose.Amazon(ak, sk)

需要添加第三个参数:service Tag。

amazon = bottlenose.Amazon(ak, sk, service_tag)
© www.soinside.com 2019 - 2024. All rights reserved.