Devise Token Auth / Angular2-Token,更新密码,已完成401未经授权

时间:2016-12-01 20:49:26

标签: authentication angular rails-api devise-recoverable

我在使用devise_token_auth恢复密码时遇到了麻烦。和Angular2-Token。我已成功收到包含更新密码链接的电子邮件。但是我在提交新密码时收到了401 Unauthorized响应。

前端。我使用urlParams.get('token')

从网址获取令牌
  onPasswordUpdate() { 
    let token = this.urlParams.get('token');
    var obj = Object.assign(this._updatePasswordData, { reset_password_token: token })
    this._tokenService.patch('auth/password/', obj ).subscribe(
      res =>    res,
      error =>  error
    );
  }

后端回复。

Started PATCH "/api/auth/password/" for 127.0.0.1 at 2016-12-01 21:17:48 +0100
Processing by DeviseTokenAuth::PasswordsController#update as JSON
  Parameters: {"reset_password_token"=>"[FILTERED]", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}
Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)

在电子邮件的链接中,我收到以下令牌:reset_password_token=HneZDoKTMCLF3_SLfnxy
当我访问该链接时,用户记录将使用以下属性进行更新:

reset_password_token: "aa3cba76c7b1d8f78cde6856f43e1cce57f5fc8e5301842733de677eff909bc1"
tokens: {}

然后在浏览器网址中,我得到以下token=agejaip2SqOp9nvwE1GAHQ&uid
然后使用以下属性更新用户记录:

...
reset_password_token: "HneZDoKTMCLF3_SLfnxy",
tokens: {"pv9i1BDTM29ezep0KSPzpA"=>{"token"=>"$2a$10$cS9gbe9UBICcgphZHRAENOMS6NlEe0Em1cNufY3LSRTPE.hRMabvi", "expiry"=>1481834221}}
...

在我看来,我在URL中找回的令牌不正确 那些人有想法吗?

抱歉,有点难以解释 非常感谢。

导轨(4.2.4)
devise_token_auth(0.1.34)
设计(= 3.5.1)
angular2-token:0.2.0-beta.1

1 个答案:

答案 0 :(得分:0)

我最近遇到了类似的挑战,这就是我解决它的方式。

为您的后端公开'access-token','expiry','token-type','uid','client'。查看herehere

config.middleware.use Rack::Cors do
    allow do
       origins '*'
       resource '*',
          :headers => :any,
          :expose => ['access-token', 'expiry', 'token-type', 'uid', 'client'],
          :methods => => [:get, :post, :options, :delete, :put, :patch]
    end
end

将redirect_url设为path: /password, method: POST。查看信息here

我们需要修改reset_password_instructions.html.erb以将其指向api GET / auth / password / edit。提供了更多信息here

E.g。如果您的API位于api名称空间下:

<%= link_to 'Change my password', edit_api_user_password_url(reset_password_token: @token, config: message['client-config'].to_s, redirect_url: message['redirect-url'].to_s) %>