Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

auth0

Package Overview
Dependencies
Maintainers
2
Versions
156
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

auth0 - npm Package Compare versions

Comparing version 0.1.7 to 0.1.9

11

lib/api.js

@@ -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({

2

package.json
{
"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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc