Я работаю над приложением Angular с Rails API. Я использую Devise Token Auth и 6.x ветвь angular-token . Я могу без проблем пользователей CRUD и могу войти, но когда я пытаюсь получить доступ к ресурсу с ограниченным доступом (один из которых ограничен хелпером before_action :authenticate_user!
), я получаю сообщение об ошибке независимо от того, вошел я в систему или нет.
Соответствующий контроллер :
class QuestionsController < ApplicationController
before_action :authenticate_user!
# GET /questions.json
def index
@questions = Question.all
# This code is never reached due to the :authenticate_user! helper,
# but when I comment it out, I get the following:
puts user_signed_in? # => false
puts current_user # => nil
render json: @questions
end
Несколько вещей:
- Я определенно вошел в систему согласно
angular-token
- TokenService.UserSignedIn()
возвращает true
во время 401 Unauthorized response
.
- Я включил CORS.
- Я указал следующие заголовки в конфигурации стойки-cors:
['access-token', 'expiry', 'token-type', 'uid', 'client']
.
Любая помощь будет принята с благодарностью.
Пример ответа от входа :
{
"data": {
"id": 1,
"email": "me@example.com",
"provider": "email",
"uid": "me@example.com",
"allow_password_change": false,
"name": null,
"nickname": null,
"image": null
}
}
Угловой код :
this.authService.loginUser({
login: '',
password: ''
})
.subscribe(resp => {
if (resp.status === 200) {
this.router.navigate(['/']);
}
},
err => {
// cut for brevity
});
Редактировать
Я выяснил, что проблема в angular-token
, не устанавливающем заголовки аутентификации из-за того, что я считаю ошибкой в следующем коде:
// Add the headers if the request is going to the configured server
if (this.tokenService.currentAuthData && req.url.match(this.tokenService.apiPath)) {
(<any>Object).assign(baseHeaders, {
'access-token': this.tokenService.currentAuthData.accessToken,
'client': this.tokenService.currentAuthData.client,
'expiry': this.tokenService.currentAuthData.expiry,
'token-type': this.tokenService.currentAuthData.tokenType,
'uid': this.tokenService.currentAuthData.uid
});
}
Поскольку я не определил apiPath
, req.url.match(this.tokenService.apiPath))
оценивается как false
, и поэтому заголовки никогда не добавляются.