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 am using a Facebook login method in my code on page load, but when I execute this code, the pop-up blocker closes the Facebook permission window.

How can I open this window with Javascipt without needing to make an exception in the pop-up blocker?

Below is my code:

FB.login(function(response)
{

if(response.session!=null)
{
window.location.href='http://example.com';
}

},{perms:'email,user_birthday,publish_stream'});
share|improve this question
Anyone have a idea to show facebook permission popup in iframe ,It may be solved popup blocker problem. Have any?? – Seema Feb 10 '11 at 11:52
See possible answer here: stackoverflow.com/questions/11779955/… – sprockett Oct 12 '12 at 6:21

6 Answers

If you try to open a popup automatically then there is a high possibility that popup blockers will become activated, as far as I know, it has to be based on some User action, for example click of a button. Try to execute this code on click of a button, it should work.

share|improve this answer
Yes Arnab! It can handle via click event but, i need to show this on page load. Have any idea ??? – Seema Feb 10 '11 at 11:28

This is specifically denied in the documentation:

"You should only call this on a user event as it opens a popup. Most browsers block popups, unless they were initiated from a user event, such as a click on a button or a link."

It's also simply poor UX.

share|improve this answer

You can do something like -

var uri = encodeURI('http://example.com');
FB.getLoginStatus(function(response) {
      if (response.status === 'connected') {
                window.location.href=uri;
      } else {
         window.location = encodeURI("https://www.facebook.com/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri="+uri+"&response_type=token");
      }

This will just redirect directly instead of opening a pop-up

share|improve this answer
interesting, but where do you ask for specific permissions like "{perms:'email,user_birthday,publish_stream'}"? – xus Jul 9 '12 at 6:51
In the redirect oauth URI, using an extra GET parameter 'scope'. Check developers.facebook.com/docs/reference/dialogs/oauth – Rahul Jul 20 '12 at 10:16

There'd be no point in popup blockers existing if you could just code around them. You'll either need to find a method that doesn't use a popup or require some user interaction with the browser to open the popup.

share|improve this answer
I don't want to use user interaction, bcoz after click on my invitation link invitee go on my home where i want to showing facebook permission popup without any user interaction. – Seema Feb 10 '11 at 11:35

Yeah you need to call it with a user event, but strictly the onclick event, not any other:

<a href="#" onclick="fbLogin()"> Login</a> <!-- works -->

<a href="#" onmousedown="fbLogin()"> Login</a> <!-- doesnt work -->

<a href="#" onmouseup="fbLogin()"> Login</a> <!-- doesnt work -->
share|improve this answer

You must use the click event to open a Popup.

If you use the old eventhandlers use "onclick". Better use the new ones:

in vanilla Javascript:

var el = document.getElementById("facebook-login");
el.addEventListener("click", function(){
  FB.login(...);
}, false);

in JQuery

$(document).on('click', '.facebook-login', function() {
    FB.login(...);
});
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.