I tried the first solution but I couldn't get it working. After much searching I found out that Omniauth has an option ":setup => true" which allows for dynamic setting of arguments, such as the :display option necessary for Facebook OAuth.
First turn on the :setup option.
config.omniauth :facebook, APP_CONFIG["fb_app_id"], APP_CONFIG["fb_app_secret"],
{:scope => 'email, offline_access', :setup => true}
Then add a second route (setup route):
devise_for :users, :controllers => { :omniauth_callbacks => "users/omniauth_callbacks" } do
get '/users/auth/:provider' => 'users/omniauth_callbacks#passthru'
get '/users/auth/:provider/setup' => 'users/omniauth_callbacks#setup'
end
Add this controller. You might already have it if you followed the devise manual.
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
def setup
request.env['omniauth.strategy'].options[:display] = mobile_device? ? "touch" : "page"
render :text => "Setup complete.", :status => 404
end
end
Add this method into your ApplicationController:
def mobile_device?
if session[:mobile_param]
session[:mobile_param] == "1"
else
request.user_agent =~ /Mobile|webOS/
end
end
Done!