deliciousapi
v0.1.1
Published
The best module ever.
Downloads
5
Readme
deliciousAPI
Node npm for the Delicious API
Getting Started
Install the module with: npm install deliciousapi
How to use
Please review the Delicious API for expected inputs and outputs and authentication flow.
By this point you, per the documentation you should have your code to get an access token. You also should create and have your application credentials.
All data is returned as json.
var delicious = require('deliciousapi')
delicious.getAcessToken( client_id, client_secret, code, function( data ) {
console.log(data);
//returns bearer and user
});
delicious.getRecent( bearer, function( data ) {
console.log(data)
});
delicious.getAll( bearer, function( data ) {
console.log(data)
});