1.1.0 • Published 7 years ago

twxauth v1.1.0

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

twxauth

Easy Twitter XAuth(?).

install

npm install twxauth

usage

'use strict';
const tx = require('twxauth');

const ck = "your consumerKey",
      cs = "your consumerSecret",
      un = "your twitter username",
      pw = "your twitter password";

(async() => {
  const token = await tx.twxauth(ck, cs, un, pw);
  console.log(token);
  /*
  **
  **  example result,
  **
  **{ accessToken: 'XXXX-XXXXXXXX',
  **  accessTokenSecret: 'XXXXXXXXXX',
  **  userId: 'XXXXXXXXXX',
  **  screenName: 'XXXXXX' }
  */
})();