Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
@people.io/ppl-api-client-js
Advanced tools
A simple Javascript client for people.io API.
Subscribe to our developer program and obtain your credentials on https://developer.people.io/
npm install @people.io/ppl-api-client-js --save
In order to call the API you will need to act as an authenticated user. A valid implicit oAuth url can be obtained by:
const client = require('@people.io/ppl-api-client-js');
// Scopes are required to declare the categories of data that your app requires.
// In this case, we are requesting the user to share personal insights about their Brand and Sport interests.
const scope = ['brands', 'sports'];
// Where would you like to have the access token delivered?
// If left blank, the user will be shown an HTML page containing the token.
const destination = 'https://myserver.io/tokenCapture';
const state = 'calculate-your-state-hash'
const url = client.getUserAuthURL(scope, destination, { state });
console.log('User authentication page: ', url);
You can configure the library in two ways:
Using the configure()
method
const client = require('@people.io/ppl-api-client-js');
const myConfiguration = {
apiKey: 'my-api-key',
clientId: 'my-client-id',
userToken: 'my-user\'s-user-token'
};
// Note: the `configure()` will always return the update configuration state.
// you can update any parameter at any pooint in time ad it will be retained without
// touching the others. You can call it without any param to obtain the current conf state.
const updateConfig = client.configure(myConfiguration);
console.log('ppl-api-client config: ', { updateConfig });
or you can pass the details to each call:
const client = require('@people.io/ppl-api-client-js');
getUserAudiences(null, { token, apiKey, clientId }).then(console.log).catch(console.error);
PPL_API_KEY="my-api-key"
PPL_CLIENT_ID="my-client-id"
All the functions can be used both in an async/await/
or promise
fashion
getAudiences(name, { limit, page, token, apiKey, clientId })
getAudienceGroups(name, { limit, page, token, apiKey, clientId })
getUserAudiences({ audienceGroupId, limit, token, apiKey, clientId })
getUserIdToken({ token, apiKey, clientId })
getUserAuthURL(scope, desination, { clientId, state })
The token
, apiKey
, and clientId
parameters become optional when previously stated or configured.
See the above configuration section for more informations.
npm test
npm start
FAQs
Simple client for people.io api
We found that @people.io/ppl-api-client-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.