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've recently implemented FB Javascript SDK for a mobile web app and am playing with their event subscription code:

FB.Event.subscribe('auth.statusChange', handleStatusChange);

I notice that handleStatusChange is called when I log in into facebook through my app. However, if I open another browser tab, go to facebook.com and log out the function isn't called.

I was expecting it to be called. Am I wrong? I thought the point of this function was to monitor changes that were not necessarily within the purview of my app.

Thanks!

share|improve this question

1 Answer

auth.authResponseChange - fired when the authResponse changes

https://developers.facebook.com/docs/reference/javascript/FB.getAuthResponse/

This would be when a users add or removes a permission, in our flows we are supposed to provide away for a users to remove each permission and authResponse allows us to monitor.

share|improve this answer
1  
Does authResponse change when you logout from facebook in a different tab? – user1152327 Dec 6 '12 at 4:07
good question i am not sure, can you test that real fast and let us know? – Shawn E Carter Dec 6 '12 at 4:20
1  
well i tried it and its not firing so i presume its not built for that – user1152327 Dec 6 '12 at 4:39

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.