下面的代碼當前有效,但是如果我使用_setup刪除該行,則傳出的請求沒有授權標頭。Ember Simple Auth - 授權人不會在會話恢復時設置
它不覺得我應該使用_setup函數,因爲它不在文檔中。
我在做什麼錯?
我正在使用最新版本的Ember和Ember-Simple-Auth與Oauth Password Grant。
Ember.getOwner(this).lookup('authenticator:custom').restore(token).then(() => {
Ember.getOwner(this).lookup('session:main')._setup('authenticator:custom', token, true);
});
這差不多就是我終於實現了。 :) – NotHereAnymore
很酷!感謝您分享您的實施 – handlebears