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.

Here is the print screen of my problem

I'm having problem with my facebook Javascript SDK.... It's working but. when you click login... There will be popup show that sign you in facebook (which is okay)..The problem is, when you signin the popup login the window do not close it stocks there... and the second problem is, the parent page is also redirect into facebook login page.. how can I fix that? BTW, I'm using ruby on rails.

Heres my facebook.js:

window.fbAsyncInit = function() {
  FB.init({
    appId      : "XXXXXXXXXXXXXXXX", // App ID
    status     : true, // check login status
    cookie     : true, // enable cookies to allow the server to access the session
    xfbml      : true  // parse XFBML

  });


    $(function() {
      $("#signin").click(function() {
        FB.login(function(response, event) {
           if (response.authResponse) {
             $.cookie("user_id", response.authResponse.userID);
             $.cookie("access_token", response.authResponse.accessToken);
             window.location = "#{auth_facebook_callback_url}";
          } else {
          }
        }, {scope: 'email,read_stream,publish_stream,offline_access'});
      });
    });


    $(function() {
        $("#signout").click(function(){
            FB.getLoginStatus(function(response){
                if(response.authResponse){
                    FB.logout();
                }
            });
        });
    }); 
 };
// Load the SDK Asynchronously
(function(d){
   var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
   if (d.getElementById(id)) {return;}
   js = d.createElement('script'); js.id = id; js.async = true;
   js.src = '//connect.facebook.net/en_US/all.js';
   ref.parentNode.insertBefore(js, ref);
 }(document));

Thanks in Advance :)

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.