我们使用Google Cloud Storage来存储用户上传的图片。由于某种原因,它今天不工作了。
var googleapis = require('googleapis');
var GoogleAuth = require('google-auth-library');
var googleAuth = new GoogleAuth();
var authClient = new googleAuth.JWTClient(
accountEmail, keyFile, null,
'https://www.googleapis.com/auth/devstorage.read_write'
);
authClient.authorize(function (err) {
// Error here: { [Error: socket hang up] code: 'ECONNRESET' }
});
所以似乎我不能建立一个连接到谷歌云存储。
我使用的是Node v0.12,需要longjohn包。当我排除longjohn包(它只用于较长的堆栈跟踪)时,它可以工作。我不知道为什么,但也许它能帮助某人。