Reputation: 221
My Rails application sometimes (from about 2 weeks) crashes during the callback method when an user tries to login with facebook.
This happens randomly and I can't find out a way to solve this problem.
Below the error and a piece of stacktrace:
A Errno::ENETUNREACH occurred in #: Network is unreachable - connect(2)
------------------------------- Backtrace:
/home/finetuning/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/net/http.rb:762:in `initialize' /home/finetuning/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/net/http.rb:762:in `open' /home/finetuning/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/net/http.rb:762:in `block in connect' /home/finetuning/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/timeout.rb:54:in `timeout' /home/finetuning/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/timeout.rb:99:in `timeout' /home/finetuning/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/net/http.rb:762:in `connect' /home/finetuning/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/net/http.rb:755:in `do_start' /home/finetuning/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/net/http.rb:744:in `start' /home/finetuning/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/net/http.rb:1284:in `request' faraday (0.7.6) lib/faraday/adapter/net_http.rb:61:in `call' faraday (0.7.6) lib/faraday/request/url_encoded.rb:14:in `call' faraday (0.7.6) lib/faraday/connection.rb:210:in `run_request' oauth2 (0.5.2) lib/oauth2/client.rb:88:in `request' oauth2 (0.5.2) lib/oauth2/client.rb:128:in `get_token' oauth2 (0.5.2) lib/oauth2/strategy/auth_code.rb:29:in `get_token' omniauth-oauth2 (1.0.0) lib/omniauth/strategies/oauth2.rb:77:in `build_access_token' omniauth-facebook (1.2.0) lib/omniauth/strategies/facebook.rb:63:in `block in build_access_token' omniauth-facebook (1.2.0) lib/omniauth/strategies/facebook.rb:110:in `with_authorization_code' omniauth-facebook (1.2.0) lib/omniauth/strategies/facebook.rb:63:in `build_access_token' omniauth-oauth2 (1.0.0) lib/omniauth/strategies/oauth2.rb:61:in `callback_phase'
Upvotes: 9
Views: 4167
Reputation: 1059
was the problem solved in any way? I'm facing it too.
Other discussion: https://github.com/mkdynamic/omniauth-facebook/issues/80
Btw, have you checked open ports?
Upvotes: 1
Reputation: 34166
It sounds like access tokens needing to be re-requested to me, but that is a not-knowledgable guess.
Theres a bunch of things that stopped the callback from working for me before I got it to work:
Feel free to double check what you have with what I got working and see if it helps:
http://www.ajostrow.me/thoughts/client-side-facebook-authentication-with-rails
Upvotes: 1