使用带有node.js的google-api-javascript-client

时间:2013-02-21 20:41:13

标签: node.js google-api google-api-client

Google的API客户端JS库是:https://code.google.com/p/google-api-javascript-client/wiki/GettingStarted

我想知道是否有任何方法可以将它用于node.js

(我正在编写一个使用谷歌日历API的小应用程序。我对node.js很新)

2 个答案:

答案 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)

js客户端支持promise。而节点客户端没有,wont fix

对我来说,这是一个很大的特点差异。有了承诺,代码可以用生成器的方式编写,以避免回调地狱。