아래 코드는 현재 작동하지만 입니다. _setup을 사용하여 줄을 제거하면 나가는 요청에 Authorization 헤더가 없습니다.Ember Simple Auth - 세션 복원시 권한 부여자가 설정되지 않음
문서에 없으므로 _setup 함수를 사용해야한다고 생각하지 않습니다.
내가 뭘 잘못하고 있니?
Oauth 암호 부여와 함께 최신 버전의 Ember 및 Ember-Simple-Auth를 사용하고 있습니다.
Ember.getOwner(this).lookup('authenticator:custom').restore(token).then(() => {
Ember.getOwner(this).lookup('session:main')._setup('authenticator:custom', token, true);
});
를 application.js application.js. :) – NotHereAnymore
쿨! 구현 공유 주셔서 감사합니다. – handlebears