Note: This is just an inital commit. It's missing most methods, has no unit tests, and probably contains some broken code.
No. In fact, it won't even let you upload programatically. I feel that it would both cause a lot of spam and just fill Vine with ads.
Nope. See above.
Also no. Because spam.
Spam.
Probably. Later.
Here's some example code... I'm working on actual docs for all the functions, but this should point you in the right direction.
var twine = require('twine');
var session = twine({username: 'user@example.com', password: 'example'});
session.on('loggedIn', function(){
session.getTimeline(function(timeline){
console.log(timeline);
})
})
- Actual documentation
- Unit tests (Mocha)
- Add additional API calls
- Clean up the code