lionheart / bottlenose

A Python wrapper for the Amazon Product Advertising API.
Apache License 2.0
577 stars 112 forks source link

Change API version to 2013-08-01 #34

Closed ckazel closed 9 years ago

ckazel commented 9 years ago

Amazon document indicates that current version is 2013-08-01 and best practices document advice to use latest version.

"The Product Advertising API uses the default API version 2013-08-01 unless you supply a different value for the Version parameter. To use a different version, you must include it in the Version parameter in your requests." Amazon Advertising API Best Practices

stephnr commented 9 years ago

Can you provide more details on what it is you are requesting?

ckazel commented 9 years ago

Hi, I am new to Amazon Advertising API, this is what I understand : changing Version parameter will be enough in following API code.

class Amazon(AmazonCall):
    def __init__(self, AWSAccessKeyId=None, AWSSecretAccessKey=None,
            AssociateTag=None, Operation=None, Version="2011-08-01",
            Region="US", Timeout=None, MaxQPS=None, Parser=None,
            CacheReader=None, CacheWriter=None, ErrorHandler=None):