谷歌的客戶端JS庫它的API是:https://code.google.com/p/google-api-javascript-client/wiki/GettingStarted使用谷歌的API,JavaScript的客戶端的node.js
我想知道是否有什麼辦法,我可以用Node.js的
使用這個(我在寫一個使用谷歌日曆API小程序,我很新的Node.js的)
谷歌的客戶端JS庫它的API是:https://code.google.com/p/google-api-javascript-client/wiki/GettingStarted使用谷歌的API,JavaScript的客戶端的node.js
我想知道是否有什麼辦法,我可以用Node.js的
使用這個(我在寫一個使用谷歌日曆API小程序,我很新的Node.js的)
谷歌有它的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
});