Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Amazon Product Advertising API client
Module provides easy access to the Amazon Product Advertising API:
Represents API connection details:
{APIMeta} = require 'apa-api'
# Default options, you can skip it
options = {
protocol: 'http'
endPoint: 'webservices.amazon.com'
service: 'AWSECommerceService'
uri: '/onca/xml'
method: 'GET'
version: '2011-08-01'
}
meta = new APIMeta(options)
Represents API authentication data (AWS access/secret):
{Credential} = require 'apa-api'
options = {
accessKey: "Your AWS access key",
secretKey: "Your AWS secret key",
associateTag: "Associate tag"
}
credential = new Credential(options)
Use this client to the Amazon Product Advertising service.
{Service, ApiMeta, Credential} = require 'apa-api'
connectionDetails = {} # See above
credentialDetails = {} # See above
service = new Service(new ApiMeta(connectionDetails), new Credentials(credentialDetails), [signer], [client])
Service use the following optional members:
Service provides methods (feature enrichment in progress):
Using defaults
async = require 'async'
concat = require 'concat-stream'
{Service, ApiMeta, Credential} = require 'apa-api'
service = new Service(new ApiMeta(), new Credentials())
itemIds = ['0123456789', '1234567890', '2345678901', ...]
async.mapLimit itemIds, 5, (itemId, callback) ->
service.itemLookup(itemId: itemId)
.on 'error', callback
.pipe concat (response) ->
# Response can contain error has been described in xml
# We ignore this validation in this example
callback(null, response)
FAQs
Amazon Product Advertising API client
The npm package apa-api receives a total of 13 weekly downloads. As such, apa-api popularity was classified as not popular.
We found that apa-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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.