您好我正在尝试使用ember simple auth编写自己的Authorizer。然而,Ember-cli看起来没有捡到它,它仍在说No authorizer was configured for Ember Simple Auth - specify one if backend requests need to be authorized.
我正在使用ember-cli 0.1.1
这是我的初始化程序:
var CustomAuthorizer = SimpleAuth.Authorizers.Base.extend({
authorize: function(jqXHR, requestOptions){
console.log('authCCC', jqXHR, requestOptions);
}
});
export default {
name: 'authorization',
before: 'simple-auth',
initialize: function(container, application) {
container.register('authorizer:custom', CustomAuthorizer);
}
};
然后根据我需要在config/environment.js
ENV['simple-auth'] = {
authorizer: 'authorizer:custom'
};
不确定这里有什么问题。从作者我得到的是一个链接到文档,没有帮助:/
提前致谢。
修改
这是我的完整环境.js
module.exports = function(environment) {
var ENV = {
modulePrefix: 'app-client',
environment: environment,
baseURL: '/',
locationType: 'auto',
EmberENV: {
FEATURES: {
// Here you can enable experimental features on an ember canary build
// e.g. 'with-controller': true
}
},
APP: {
// Here you can pass flags/options to your application instance
// when it is created
},
contentSecurityPolicy: {
'font-src': "'self' https://fonts.gstatic.com"
}
};
ENV['simple-auth'] = {
authorizer: 'authorizer:custom'
};
if (environment === 'development') {
ENV.APP.LOG_RESOLVER = true;
ENV.APP.LOG_ACTIVE_GENERATION = true;
ENV.APP.LOG_VIEW_LOOKUPS = true;
ENV.APP.SERVER_URL = 'http://localhost:3000';
// ENV.APP.SERVER_URL = 'http://0.0.0.0:3000';
}
if (environment === 'test') {
// Testem prefers this...
ENV.baseURL = '/';
ENV.locationType = 'auto';
// keep test console output quieter
ENV.APP.LOG_ACTIVE_GENERATION = false;
ENV.APP.LOG_VIEW_LOOKUPS = false;
ENV.APP.rootElement = '#ember-testing';
}
if (environment === 'staging') {
ENV.APP.SERVER_URL = 'http://apistaging.server.io';
}
if (environment === 'production') {
ENV.APP.SERVER_URL = 'https://api.server.io';
}
return ENV;
};
答案 0 :(得分:1)
请参阅上述与@marcoow对话的评论。基本上这是我的错误。
如果您使用的是ember-cli,请确保使用简单身份验证的ember-cli版本。
确保您已在环境.js中注册了授权者以及crossOriginWhitelist
,因此典型的将成为
ENV['simple-auth'] = {
authorizer: 'authorizer:custom',
crossOriginWhitelist: ['http://domain.com']
};
这些信息是他所有的文档,但是为了一个简单的新手而采取了一些拼凑。
查理