
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
node-amazon-mws-api
Advanced tools
Amazon MWS Node.js modules are a mess. This project is based on multiple projects from this.
Promise based. Only compatible with Node ^4.0.0. (unless someone adds a babel precompilation step)
Supports throttling and pagification. (NextToken stuff)
Installation:
npm i mws-api -S
Initialization:
const MWSClient = require('mws-api');
const mws = new MWSClient({
accessKeyId: 'lol',
secretAccessKey: 'kek',
merchantId: 'hue',
meta: {
retry: true, // retry requests when throttled
next: true, // auto-paginate
limit: Infinity // only get this number of items (NOT the same as MaxRequestsPerPage)
}
});
For other countries, also set the host
parameter, according to the MarketPlaceId
you are using, otherwise it leads to AccessDenied
error. For example:
...
const mws = new MWSClient({
host: 'mws.amazonservices.co.uk', // .de, .es, .fr, .it, etc
...
}
Usage:
mws.Orders.ListOrders({
MarketplaceId: 'lel',
MaxResultsPerPage: 10,
CreatedAfter: new Date(2015, 1, 1),
CreatedBefore: new Date(2015, 1, 2)
})
.then(({ result, metadata }) => {
// result
});
Flat files:
When working with a flat-file response from Amazon, a parseCSVResult
function is provided as an
option to conviniently post-process the result. Returning a Promise will result in the Promise being resolved.
// An example to change the encoding of the raw response
const iconv = require('iconv-lite');
const MWSClient = require('mws-api');
const mws = new MWSClient({
accessKeyId: 'lol',
secretAccessKey: 'kek',
merchantId: 'hue',
meta: {
parseCSVResult: (data) => iconv.encode(data, 'utf-8').toString()
}
});
FAQs
Amazon Marketplace Web Services API client
The npm package node-amazon-mws-api receives a total of 2 weekly downloads. As such, node-amazon-mws-api popularity was classified as not popular.
We found that node-amazon-mws-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.