在使用谷歌令牌时,您需要通过此服务获取连接到Google的服务的访问令牌。在任何事情之前,您需要在根文件夹中创建一个config.js文件,其内容如下:


exports.server = {

  port: 7777 // the port for the oauth site

};

exports.communication = {

  port: 7776, // the port for the req service

  pubPort: 7775, // the port for the pub service

};

exports.google = {

  key: 'your-google-app-id',

  secret: 'your-google-app-secret',

  callback: 'http://localhost'

};

此文件包含了服务器端口配置、通信服务端口配置和谷歌认证的密钥信息。