Gathering detailed insights and metrics for gigya-node
Gathering detailed insights and metrics for gigya-node
Gathering detailed insights and metrics for gigya-node
Gathering detailed insights and metrics for gigya-node
npm install gigya-node
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
2 Stars
173 Commits
2 Forks
2 Branches
1 Contributors
Updated on 05 Dec 2023
TypeScript (100%)
Cumulative downloads
Total Downloads
Last day
-1.6%
61
Compared to previous day
Last week
-12.6%
354
Compared to previous week
Last month
20.3%
2,148
Compared to previous month
Last year
-56%
48,611
Compared to previous year
1
This is an unofficial SDK for Gigya's REST API. Please do not contact Gigya support with questions or concerns about this SDK. For any issues, please make an issue on GitHub.
Gigya is listed on NPM. To install, run the following command within your project folder:
npm install gigya
Please follow these steps to integrate Gigya within your Node JS application:
After you have logged in the user, you may use Gigya's API to access the user's profile and perform various activities. The following example demonstrates fetching a user's profile.
1// Include Gigya's SDK 2import Gigya from 'gigya'; 3 4// Initialize SDK with your API Key and Secret. 5const gigya = new Gigya('YOUR_API_KEY', 'YOUR_DATA_CENTER', 'YOUR_SECRET'); 6 7// or: 8 9// Initialize SDK with your API Key, User Key, and User Secret. 10const gigya = new Gigya('YOUR_API_KEY', 'YOUR_DATA_CENTER', 'YOUR_USER_KEY', 'YOUR_USER_SECRET'); 11 12// Initialize SDK with your API Key, User Key, and Private Key. 13const gigya = new Gigya('YOUR_API_KEY', 'YOUR_DATA_CENTER', { userKey: 'YOUR_USER_KEY', privateKey: 'YOUR_USER_PRIVATE_KEY' }); 14 15// or: 16 17// Initialize without keys and pass to each method. 18const gigya = new Gigya(); 19 20// Fetch user's account. 21// Returns a Promise. Promise is thrown on error. 22const response = await gigya.accounts.getAccountInfo({ 23 UID: 'PUT-UID-HERE' 24}); 25 26// Act on account. 27console.log(response.UID);
1// Include Gigya's SDK 2var Gigya = require('gigya').Gigya; 3 4// Initialize SDK with your API Key and Secret. 5const gigya = new Gigya('YOUR_API_KEY', 'YOUR_DATA_CENTER', 'YOUR_SECRET');
For your front-end implementation, check out Gigya Markup!
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
4 existing vulnerabilities detected
Details
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
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
Score
Last Scanned on 2024-11-25
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