我正在尝试构建自定义身份验证器以使用auth0来帮助我管理正在构建的应用程序的用户。我使用ember-simple-auth作为我的身份验证管理器,并且遇到了auth0的回调问题。我不是100%肯定要把这个作为回调网址。我得到的错误:
断言失败:路线access_token = [access_token]
这是我尝试使用的身份验证器。
App.Auth0Authenticator = Ember.SimpleAuth.Authenticators.Base.extend({
authenticate: function(){
return new Ember.RSVP.Promise(function(resolve, reject){
auth0.signin({}, function(err, profile, id_token, state){
resolve({auth0_accessToken: id_token});
});
});
},
invalidate: function(){
return new Ember.RSVP.Promise(function(resolve, reject){
//client.logout();
Ember.run(resolve);
});
}
});