Google 的 API 客户端 JS 库是:https ://code.google.com/p/google-api-javascript-client/wiki/GettingStarted
我想知道是否有任何方法可以将它与 node.js 一起使用
(我正在编写一个使用谷歌日历 api 的小应用程序。我对 node.js 很陌生)
Google 的 API 客户端 JS 库是:https ://code.google.com/p/google-api-javascript-client/wiki/GettingStarted
我想知道是否有任何方法可以将它与 node.js 一起使用
(我正在编写一个使用谷歌日历 api 的小应用程序。我对 node.js 很陌生)
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
});