node-scribd-client

0.1.5-0 • Public • Published

node-scribd-client Build Status

an unofficial nodejs client for the scribd platform API

Getting Started

Install the module with: npm install node-scribd-client

Documentation

This client supports the full set of scribd APIs and API signing for all requests.

Docs Are Here

*see Scribd API Docs for more information

Testing

npm test

Examples

var Scribd = require('node-scribd-client'),
    scribdApiKey = "YOUR-API-KEY",
    scribdSecret = "YOUR-SECRET",
    scribd = new Scribd(scribdApiKey, scribdSecret),
    docId = '159857500',
    params = {doc_id: docId};
 
scribd.getConversionStatus(params, function(err, resp){
    console.log(resp);
});

Contributing

Any bugs, changes or suggestions let me know and submit a pull request.

License

Copyright (c) 2013 Jeff Sturgis Licensed under the MIT license.

Package Sidebar

Install

npm i node-scribd-client

Weekly Downloads

7

Version

0.1.5-0

License

none

Last publish

Collaborators

  • jsturgis