1
我正在使用節點雲文件進行身份驗證。Rackspace授權Node.js
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
- 何處是問題嗎?