
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
qualtrics-sdk-node
Advanced tools
The purpose of this library is to provide a Node client to the Qualtrics public facing API.
npm install qualtrics-sdk-node
First find your data center and API token:
const QualtricsSdk = require('qualtrics-sdk-node');
const qualtrics = new QualtricsSdk({
dataCenter: '...',
apiToken: '...',
});
qualtrics.surveys.listSurveys()
.then((response) => console.log(response));
First find your data center and clientId and clientSecret:
const QualtricsSdk = require('qualtrics-sdk-node');
const qualtrics = new QualtricsSdk({
dataCenter: '...',
clientId: '...',
clientSecret: '...',
});
qualtrics.surveys.listSurveys()
.then((response) => console.log(response));
API calls are namespaced to their respective resources. User API calls can be found at qualtrics.users
, Survey API calls can be found at qualtrics.surveys
, etc.
However, Target Audience calls are an exception. Because some of the resource names conflict with Insight Platform calls, they have been namespaced to their sub-resources under their top-level resource, directories.
For example, Target Audience Contact API calls can be found at qualtrics.directories.contacts
, Target Audience Mailing List API calls can be found at qualtrics.directories.mailingLists
, etc.
Refer to the contribution guidelines.
This project is licensed under the Apache License version 2.0. Please refer to the license for usage info.
Do not expose your API token! This project is for server-side usage only.
FAQs
Qualtrics Node SDK
The npm package qualtrics-sdk-node receives a total of 0 weekly downloads. As such, qualtrics-sdk-node popularity was classified as not popular.
We found that qualtrics-sdk-node demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.