Comparing version 0.1.7 to 0.1.9
@@ -193,2 +193,13 @@ var request = require('request'), | ||
api.getStrategies = function (accessToken, done) { | ||
request.get({ | ||
url: this.apiUrl + '/strategies', | ||
qs: { access_token: accessToken } | ||
}, function (err, r, body) { | ||
if (err) return done(err); | ||
if (r.statusCode.toString().substr(0, 1) !== '2') return done(new Error(body)); | ||
done(null, JSON.parse(body)); | ||
}); | ||
}; | ||
api.getConnection = function(accessToken, name, done) { | ||
@@ -195,0 +206,0 @@ request.get({ |
{ | ||
"name": "auth0", | ||
"version": "0.1.7", | ||
"version": "0.1.9", | ||
"description": "Client library for the Auth0 platform", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13345
281
1