-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing required MWSAuthToken for Seller #74
Comments
Try just passing this: {
merchantId: 'id',
authToken: 'auth token'
accessKeyId: 'asd',
secretAccessKey: 'asd'
} |
I have the same issue, tried authToken, but still access denied |
Let's not mix issues, one thing is missing a required MWSAuthToken parameter, which should be Another thing is having the access denied on the shop. This is not an issue of this module. Since it is a message coming from mws itself. Check you have your credentials correctly setup. Maybe we could help a little bit on this if you could provide a better description of the error or the output itself. |
Thanks for the quick reply, I will check and report back later |
@wiredots01 any updates? |
Sorry for the delay, of course it was a wrong parameter, the module works as expected, including MWSAuthToken aka |
i got an error:
Missing required MWSAuthToken for Seller
code:
const mws = new MWSClient({
MWSAuthToken: 'mwstokenfrommyaccount',
accessKeyId: 'myaccesskey',
secretAccessKey: 'mysecretkey',
merchantId: 'merchantIdsample',
meta: {
retry: true, // retry requests when throttled
next: true, // auto-paginate
limit: Infinity, // only get this number of items (NOT the same as MaxRequestsPerPage)
},
});
The text was updated successfully, but these errors were encountered: