情况:
使用Rails 3和OmniAuth,我有一个使用Facebook策略进行身份验证的应用程序.这个应用程序的构建同样适用于Web和移动界面(ala Jquery-Mobile).
面临的挑战是让OmniAuth为移动设备提供Facebook登录屏幕的移动版本,为桌面设备提供网络版本.
我已经破解了一个解决方案,我将其作为答案.
解决方法
实际上,由于OmniAuth :: Strategies已经是Rack中间件,它甚至更简单.只需覆盖request_phase方法并检查策略中存在的移动user_agent的@env实例变量:
module OmniAuth module Strategies class Facebook < OAuth2 MOBILE_USER_AGENTS = 'webos|ipod|iphone|mobile' def request_phase options[:scope] ||= "email,offline_access" options[:display] = mobile_request? ? 'touch' : 'page' super end def mobile_request? ua = Rack::Request.new(@env).user_agent.to_s ua.downcase =~ Regexp.new(MOBILE_USER_AGENTS) end end end end