使用Google Cloud Storage + Node.js创建存储桶

时间:2014-07-18 14:30:55

标签: node.js google-cloud-storage

我希望能够在Google云端存储中动态创建存储桶。我正在使用MEAN.io堆栈,所以我想在后端的Node.js中执行此操作。 我找不到api来帮助我,有没有办法做到这一点?

谢谢!

更新:我在这里尝试使用Google-Node.js api,但一切都没有发生。我试图在遇到问题时对其进行身份验证,但我不确定从哪里开始。

googleAuth.authenticate(
    credentials.jwt,
    function(err, token) {
        if (err) console.log(err);
        console.log(token);

        googleapis
            .discover('storage', 'v1')
            .execute(function(err, client) {
                if (err) console.log(err);

                client.storage.buckets.insert({'project': credentials.project}, {'name': bucketname}).execute();
            })
    }); 

1 个答案:

答案 0 :(得分:0)

Google Cloud Storage JSON API可能是您要使用的API。您可以直接对其进行编码,也可以使用Google APIs Node.js Client等库。