0.1.1 • Published 10 years ago

deliciousapi v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

deliciousAPI Build Status

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)
});
0.1.1

10 years ago

0.1.0

10 years ago

0.0.1

10 years ago