ruby-on-rails – 如何从Doorkeeper身份验证会话访问current_user

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何从Doorkeeper身份验证会话访问current_user前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 rails app,我试图与 android app同步.我已成功设置 authentication使用 Doorkeeper作为服务器,Oltu作为客户端.

我的应用程序跟踪按用户列表存在的习惯.习惯控制器中的索引方法是:

def index
  @habits = current_user.habits
end

当通过Devise进行身份验证时,此方法有效,当使用Doorkeeper时,current_user为nil.

解决方法

我会覆盖你的基本API控制器中的current_user,如:
private

def current_user
  @current_user ||= User.find(doorkeeper_token[:resource_owner_id])
end
原文链接:https://www.f2er.com/ruby/269185.html

猜你在找的Ruby相关文章