2011-12-29 39 views

回答

2

您可以使用JS SDK訂閱該類型的事件。看看facebook javascript documentation,您正在尋找的方法是'auth.authResponseChange'

FB.Event.subscribe('auth.authResponseChange', function(response) { 
    alert('The status of the session is: ' + response.status); 
}); 
相關問題