dbtwitter
v1.0.2
Published
Get twitter information via OAuth
Downloads
7
Readme
dbtwitter - yet another thing to get twitter stuff
As of this moment, you can only get a user's timeline using this. But if you want add more, feel free to add to it and show me!
How to do eet.
var twitter = require('dbtwitter');
var opts = {consumer_key: '', consumer_secret: '', access_token_key: '', access_token_secret: ''}
var tw = new twitter(opts);
tw.timeline('dbdii407', function(err, response) {
...
});