谷歌令牌
使用此服务获取连接到 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
1