Gathering detailed insights and metrics for node-gigya
Gathering detailed insights and metrics for node-gigya
Gathering detailed insights and metrics for node-gigya
Gathering detailed insights and metrics for node-gigya
Node.js wrapper for the Gigya REST API, based on official Gigya SDK
npm install node-gigya
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
GPL-3.0 License
1 Stars
15 Commits
2 Forks
1 Watchers
1 Branches
1 Contributors
Updated on Mar 09, 2023
Latest Version
0.1.4
Package Id
node-gigya@0.1.4
Size
17.33 kB
NPM Version
3.10.3
Node Version
6.5.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
A simple Node.js wrapper for the Gigya REST API. Based on the official Gigya Server Side SDKs
via npm:
npm install node-gigya
The request
method that takes an endpoint string and an object with request parameters. A predefined list of endpoints have also been mapped to the instance and are bound to the request
method (see the white list below.)
1const Gigya = require('node-gigya'); 2 3const myGigya = new Gigya(myAPIKey, mySecretKey); 4 5// get a user's account info: 6const req = myGigya.request('accounts.getAccountInfo', { uid: 'useridhere' }); 7// OR by using the mapped method.. 8// const req = myGigya.accounts.getAccountInfo({ uid: 'useridhere' }); 9 10req.then( 11 response => { 12 // response is the json response object from the api 13 }, 14 err => { 15 // err.response contains the original json response object returned by the api. 16 // err.status is the error code of the json response.. 17 // e.g., "errorCode": 401002, err.status will be 401 18 } 19);
Included static utility methods for calculating and validating signatures in accordance with Gigya's Security Guidelines
1const SigUtils = require('node-gigya').SigUtils;
Utilitiy method for validating a user signature, pass in the UID, signatureTimesatmp, site secret key, and the UIDSignature. Returns true or false.
Utility method for creating a Base64 encoded signature. Pass in a base string and the site secret key. User signatures use a base string in the format of %TIMESTAMP%_%UID%. Returns Base64 encoded signature.
See Gigya's REST API docs for a list of all current endpoints and their required parameters. This list has been maintained as of September 2016, so some endpoints may have been deprecated since.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 0/14 approved changesets -- score normalized to 0
Reason
project is archived
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More