I want to share some data on google plus from my Website. Facebook and twitter is completed using NodeJS (Using npm twit and fb). in FB
var FB = require('fb');
FB.api('me/feed', 'post', { message: "something"}, function (result) {
}
and in twitter
var Twit = require('twit');
T.post('statuses/update', { status: "something" }, function(err, data, response) {}
But I am stuck with Google Plus. I dont know how to do it by using NodeJS. Please help me. Thanks in Advance.