deliciousapi

0.1.1 • Public • Published

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

/deliciousapi/

    Package Sidebar

    Install

    npm i deliciousapi

    Weekly Downloads

    3

    Version

    0.1.1

    License

    MIT

    Last publish

    Collaborators

    • tobiaswright