Skip to content

v1.5.0

Compare
Choose a tag to compare
@dmcquay dmcquay released this 22 Apr 04:58
· 35 commits to master since this release

Allow endpoint to be auto-configured by providing desired locale.

Example:

var opHelper = new OperationHelper({
    awsId:     '[YOUR AWS ID HERE]',
    awsSecret: '[YOUR AWS SECRET HERE]',
    assocId:   '[YOUR ASSOCIATE TAG HERE]',
    locale: 'IT'
});

This will automatically set your endpoint to the correct endpoint for Italy (webservices.amazon.it). You can also provide the endpoint directly as before:

var opHelper = new OperationHelper({
    awsId:     '[YOUR AWS ID HERE]',
    awsSecret: '[YOUR AWS SECRET HERE]',
    assocId:   '[YOUR ASSOCIATE TAG HERE]',
    endPoint: 'webservices.amazon.it'
});