Reputation: 827
I want to use the bottlenose API for building a price predictor for Amazon products. I understand that it's a wrapper. I have these questions:
Is it must to have the AWS Associate Tag to use bottlenose? Or can I query the product prices and such using only the Access Key ID and Secret Access Key?
While creating a user in AWS IAM, what permissions do I need to give it so that he is able to use the Bottlenose API programmatically?
Upvotes: 2
Views: 167
Reputation: 1023
A policy something like below. (note, the version must be 2012-10-17 not a current date)
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "ProductAdvertisingAPI:*",
"Resource": "*"
}
]
}
Upvotes: 1