我们正在使用Google云端存储来存储用户上传的图片。由于某种原因,它今天停止工作。
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' }
});
因此,我似乎无法建立与Google云端存储的连接。