Skip to content

tobiaswright/delicious-node-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Node npm for the Delicious API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published