1

認証に node-cloudfiles を使用しています。

var cloudfiles = require('cloudfiles');
var config = {
auth : {
  username: 'my-username',
  apiKey: 'my-api-key'
  }
};

var client = cloudfiles.createClient(config);
console.log(client);

そして、これは私が得ているものです

{ config:
   { auth:
      { username: 'my-username',
        apiKey: 'my-api-key',
        host: 'auth.api.rackspacecloud.com' },
     servicenet: false },
  authorized: false }

ユーザー名とapiKeyは正しいです。phpでは機能しますが、node.jsでは機能しません

authorized: false 

- どこに問題がありますか?

4

1 に答える 1