尝试连接我的应用的Facebook身份验证。我的后端工作正常,但我的身份验证器(我认为这是问题)总是返回undefined
。
从第23行的ember-simple-auth控制台日志复制示例永远不会被调用,让我想到其他问题吗?
import Ember from 'ember';
import Torii from 'ember-simple-auth/authenticators/torii';
const {inject: {service}} = Ember;
export default Torii.extend({
torii: service(),
ajax: service(),
authenticate() {
const ajax = this.get('ajax');
return this._super(...arguments).then((data) => {
return ajax.request('http://localhost:8080/api/login', {
type: 'POST',
dataType: 'application/json',
data: {
'grant_type': 'facebook_auth_code',
'auth_code': data.authorizationCode
}
}).then((response) => {
console.log("CALLED!");
return {
access_token: response,
provider: data.provider
};
});
});
}
});
来自服务器的响应是来自facebook的access_token;
如何更好地调试/解决此处发生的事情?
答案 0 :(得分:0)
问题实际上是使用dataType
的简单错误。它应该是dataType: 'json'
而不是dataType: 'application/json'