我正在使用 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
- 问题可能出在哪里?