Is there a JavaScript API or third party fra开发者_JAVA技巧mework for Google Docs that I can use in Node.js?
Thanks
Google apps allows RESTful api's to access resources. Please refer the protocol guide for the same
http://code.google.com/apis/documents/docs/developers_guide.html
There are a few plugins to read google spreadsheets though not many to do batch updates. So if you just want to update google spreadsheets, check out: https://github.com/jpillora/node-edit-google-spreadsheet
As nelsonic mentions in his reply to nibin012, there is niftylettuce's node-google-drive node.js module: https://npmjs.org/package/google-drive
Then the Google Drive API there is Google OAuth for "service"/server apps mentioned in the following links: https://developers.google.com/accounts/docs/OAuth2#scenarios https://developers.google.com/accounts/docs/OAuth2ServiceAccount
However in the latter link there is no support for a JavaScript library yet.
精彩评论