I have the following code, it works for a while then after a while I cannot get the authResponseChange event to fire anymore. I have deleted all of my cookies, deauthorized the app and re-added it. How do I handle this event?
<script type="text/javascript">
window.fbAsyncInit = function () {
FB.init({ appId: 'APP_ID',
status: true,
cookie: true,
xfbml: true,
oauth: true
});
FB.Event.subscribe('auth.authResponseChange', handleResponseChange);
};
function handleResponseChange(response) {
document.body.className = response.authResponse ? 'connected' : 'not_connected';
if (response.authResponse) {
console.log(response);
alert('connect');
}
}
</script>
