关于devise结合github通过omniauth登录

最近写了个github帐户登录Demo:
[url]https://github.com/yankforce/devise_omniauth_github[/url]


演示项目地址:

[url]http://devise-github.herokuapp.com[/url]


BASIC版本,只是github omniauth,可以参考这个
[url]https://github.com/bay6/omniauth-github-example[/url]
demo:
[url]http://github-ominiauth.herokuapp.com[/url]

主要遇到问题:

No route matches “/users/sign_out” devise rails 3


<% if user_signed_in? %>
Signed in as <%= current_user.email %>. This cannot be cheese?
<%= link_to 'Sign out', destroy_user_session_path %>
<% else %>
<%= link_to 'Register', new_user_registration_path %> or <%= link_to 'Sign in', new_user_session_path %>
<% end %>


忘了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地址
[url]http://yourdomain.users/auth/github/callback[/url]

[color=olive]问题三[/color]


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的传统配置
[url]https://github.com/plataformatec/devise/wiki/OmniAuth%3A-Overview[/url]
不是[url]https://github.com/intridea/omniauth[/url]

你可能感兴趣的:(Ruby,On,Rails)