我試圖使用Rails中的作用電纜來實現通知5.用戶會話驗證5
閱讀的作用電纜的教程,這對會議的工作&餅乾基於身份驗證收到通知後當前登錄的用戶。
module ApplicationCable
class Connection < ActionCable::Connection::Base
identified_by :current_user
def connect
self.current_user = find_verified_user
logger.add_tags 'ActionCable', current_user.username
end
protected
def find_verified_user
if verified_user = env['warden'].session(:user)
verified_user
else
reject_unauthorized_connection
end
end
end
在find_verified_user中,我無法從會話中獲取用戶對象。
任何人都可以幫助我,驗證用戶在行動電纜。
不要使用ActionCable會話,看這樣的回答:https://stackoverflow.com/questions/32025897/authenticating-using-actioncable#answer -32207192 – murb