0.0.3 • Published 9 years ago

nknight v0.0.3

Weekly downloads
1
License
ISC
Repository
-
Last release
9 years ago

knight

A NodeJS library to interact with multiple social media platforms like update statuses, read user feed(coming sonn).

##Install

npm install nknight

##Example

var Knight = require('nknight');

var knight = new Knight();

knight.add(new Knight.Facebook('fb token'));
knight.add(new Knight.Twitter({
            apiKey:"consumer key",
            apiSecret:"consumer secret",
            tokenKey:"token key",
            tokenSecret:"token secret"
          }));

knight.share(new Knight.ImageStory('Test Status From API', 'image url'));

##Contribute This project is currently in very basic stage and there are enormouse opportunity for contribution.

  • Add support for new social media platforms.
  • Add functionality to read user feed/public feed from social medias.
  • Twitter image upload from remote url.