
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
node-red-contrib-spotify
Advanced tools
This node for Node-RED is a wrapper for spotify-web-api-node.
The package contains two nodes. One configuration node to setup the OAuth2 authentication using a Client id and a Client secret. The function node is to select the API function which you want to use.
Run the following command in the root directory of your Node-RED installation
npm install node-red-contrib-spotify
or
yarn add node-red-contrib-spotify
CREATE A CLIENT IDEDIT SETTINGS and add a new Redirect URI.
<node-red-ip:port>/spotify-credentials/auth/callback
// e.g. if you're running node-red on localhost
http://localhost:1880/spotify-credentials/auth/callback
Client ID and Client Secret.Start Authentication and allow the access for your Spotify account.Some API functions require extra parameters. To define parameters, use the msg.params object and define an array with all required arguments.
Check out the API description for more information about available functions.
Example:
// API function: getArtistAlbums
msg.params = [
'43ZHCT0cAZBISjO8DG9PnE', /* Artist ID */
{ limit: 10, offset: 20 } /* Options */
];
FAQs
Node-RED node for Spotify
The npm package node-red-contrib-spotify receives a total of 139 weekly downloads. As such, node-red-contrib-spotify popularity was classified as not popular.
We found that node-red-contrib-spotify 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.