https://github.com/yankforce/devise_omniauth_github
演示项目地址:
http://devise-github.herokuapp.com
BASIC版本,只是github omniauth,可以参考这个
https://github.com/bay6/omniauth-github-example
demo:
http://github-ominiauth.herokuapp.com
主要遇到问题:
No route matches “/users/sign_out” devise rails 3
忘了delete方法
<%= link_to "Sign out", destroy_user_session_path, :method => :delete %>
重写登录成功,退出路径hook
def after_sign_in_path_for(resource) current_user_path end def after_sign_out_path_for(resource_or_scope) request.referrer end
devise默认call back地址
http://yourdomain.users/auth/github/callback
问题三
Undefined method omniauth_authorize_path The fix, or at least the one that worked for me: replace: omniauth_authorize_path(resource_name, provider) with user_omniauth_authorize_path(provider)
解决办法:
#删除config/initializers/omniauth.rb #添加到config/initializers/devise.rb config.omniauth :github, CONFIG[:facebook_key], CONFIG[:facebook_secret]
总的来说devise的omniauth不能用omniauth的传统配置
https://github.com/plataformatec/devise/wiki/OmniAuth%3A-Overview
不是 https://github.com/intridea/omniauth