我正在尝试构建一个自定义身份验证器以与 auth0 一起使用,以帮助我管理正在构建的应用程序的用户。我使用 ember-simple-auth 作为我的身份验证管理器,并且遇到了 auth0 的回调问题。我不是 100% 确定该放什么作为回调 url。我得到的错误:
断言失败:路由 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);
});
}
});