1.1.1 • Published 8 years ago
gigya-sdk v1.1.1
Gigya SDK
Install
npm install --save gigya-sdkSetup
const Gigya = require('gigya-sdk');
const gigyaAccounts = new Gigya.Accounts({
apiKey: '',
secret: '',
ssl: true,
});Usage
Callbacks
gigyaAccounts.getAccountInfo({ UID: '' }, (err, result) => {
//
});Promises
gigyaAccounts.getAccountInfo({ UID: '' }).then((response) => {
//
});