无法访问googleapis auth.OAuth2 for google calender api

时间:2018-04-03 12:47:06

标签: node.js google-api node-modules google-calendar-api

以下代码是从node.js quickstart Google calender Api部分的link粘贴的。此代码无法从google API访问auth&#s; sI复制了以下错误。要查看完整代码,您可以访问此代码https://www.highcharts.com/products/plugin-registry/single/42/Zero-align%20y-axes。感谢您的帮助。

const google = require('googleapis');
const OAuth2Client = google.auth.OAuth2;

错误如下所示:

  

const OAuth2Client = google.auth.OAuth2;                                    ^
      TypeError:无法读取属性' OAuth2'未定义的

1 个答案:

答案 0 :(得分:4)

试一试:

const {google} = require('googleapis'); const OAuth2 = google.auth.OAuth2;