Google的API客户端JS库是:https://code.google.com/p/google-api-javascript-client/wiki/GettingStarted
我想知道是否有任何方法可以将它用于node.js
(我正在编写一个使用谷歌日历API的小应用程序。我对node.js很新)
答案 0 :(得分:2)
Google为其API提供了一个node.js客户端库:https://github.com/google/google-api-nodejs-client
var googleapis = require('googleapis');
googleapis.discover('calendar', 'v3').execute(function(err, client) {
// authenticate and make requests here
});
答案 1 :(得分:0)