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.

I redirect user to the OAuth 2.0 authorization endpoint in popup window. What is best way to close this popup and refresh main window after OAuth 2.0 authorization server redirects user back with an authorization code?

Thanks in advance for any help.

share|improve this question

1 Answer

up vote 2 down vote accepted

I think popup you can close by

parent.close();

And to refresh main window i used this trick:

$(function(){
    var win = null;
    var check_connect;
    var $connect = $("#some_button");
    $connect.click(function() {
       win = window.open("http://example.com/account/_oauth?redirect_url=" + redirect_url,'SomeAuthentication', 'width=972,height=660,modal=yes,alwaysRaised=yes');
    });

      check_connect = setInterval(function(){
        if ( win != null ) {
          if( win.closed ){
              clear(check_connect);
              window.location.reload();
            }
        }
      }, 100);

      function clear(it){ clearInterval(it); }
}

Opener ( main window ) just checks every time if the popup still live and if win.closed returns true - the main window reloads

Hope it will help somebody

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.