Comparing version 0.2.15 to 0.2.16
@@ -158,4 +158,4 @@ var stream = require('stream') | ||
client_id: this.clientId | ||
}, function(res){ | ||
cb&&cb(res.error || res.body); | ||
}, function(err,res){ | ||
cb&&cb(err, res); | ||
}); | ||
@@ -167,4 +167,4 @@ }; | ||
access_token: token | ||
}, function(res){ | ||
cb&&cb(res.error || res.body); | ||
}, function(err,res){ | ||
cb&&cb(err, res); | ||
}); | ||
@@ -175,4 +175,4 @@ }; | ||
this._apiRequest( 'locations/' + id + '/media/recent', 'GET', { | ||
}, function(){ | ||
}, function(err,res){ | ||
cb&&cb(err, res); | ||
}); | ||
@@ -185,4 +185,4 @@ }; | ||
lng: '' | ||
}, function(){ | ||
}, function(err,res){ | ||
cb&&cb(err, res); | ||
}); | ||
@@ -193,4 +193,4 @@ }; | ||
this._apiRequest( 'locations/' + id + '/media/recent', 'GET', { | ||
}, function(){ | ||
}, function(err,res){ | ||
cb&&cb(err, res); | ||
}); | ||
@@ -202,4 +202,4 @@ }; | ||
client_id: this.clientId | ||
}, function(){ | ||
}, function(err,res){ | ||
cb&&cb(err, res); | ||
}); | ||
@@ -206,0 +206,0 @@ }; |
{ | ||
"name": "socializr", | ||
"version": "0.2.15", | ||
"version": "0.2.16", | ||
"description": "Read data streams from several social networks.", | ||
@@ -5,0 +5,0 @@ "main": "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
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
48918
1741