meteor-twitter-api is a simple package to wrap the Twitter API using Meteor's Twitter Service OAuth1Binding class.
Latest Version: 0.1.0
Previous Version: 0.1.0
To install in a new project:
> mrt add twitter-api
To update an existing project:
> mrt update twitter-api
> git clone https://github.com/sewdn/meteor-twitter-api.git twitter-api
> cd twitter-api/examples/basic
> mrt
no tests for now
if (Meteor.isServer) {
var twitter = new Twitter();
}
...
Meteor.methods({
followMe: function () {
twitter.follow("mytwitterHandle");
}
});
...