我在NodeJS中编写了一个应该连接到GA的模块。我写了一个添加的授权模块 https://www.googleapis.com/auth/analytics到范围。我收到了来自Google API的令牌。
使用此令牌我尝试连接到Google AnalyticsAPI但收到ECONNRESET错误,套接字挂断。
我仔细检查了申请是否有权在http://code.google.com/apis/console与GA APi交谈。
这是我用来连接API的选项。
host: 'www.googleapis.com',
port: 443,
path: '/analytics/v3/management/accounts',
method: 'GET',
headers: { Authorization: '********' }
有人知道出了什么问题吗?
谢谢!