Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Currently my "login with facebook" button works perfectly when the browsers hits /auth/facebook. However, I would prefer to be able to have a user login without refreshing the page. I'm trying something like so:

$(document).ready(function() {
  var $login;
  $login = $('#login');
  return $login.click(function(event) {
    event.preventDefault();
    console.log("Trying to log in");
    return $.ajax({
      url: $login.attr('href'),
      data: {},
      complete: function(response) {
        return console.log(response);
      }
    });
  });
});

but I don't seem to get useful data back from the response, and the browser seems to cancel the redirect (according to the web developer panel in chrome). Is there any way to get this working with omniauth?

I don't want to use Iframes either.

share|improve this question

1 Answer

Before trying to do it you need to understand how omniauth works. Then you will be able to choose most appropriate solution.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.