2013-07-08 150 views
0

我的Facebook comment.create订阅有问题。Facebook comment.create手机无法正常工作

问题在于事件并未在手机浏览器中启动,而是在桌面浏览器中,它一切正常。

为什么不能在手机上使用?

window.fbAsyncInit = function() { 
    FB.init({ 
     appId: 'XXXXXXX', 
     status: true, 
     cookie: true, 
     xfbml: true, 
     oauth: true 
    }); 

    FB.Event.subscribe('comment.create', function (response) { 
     alert("comment created"); 
    }); 

    // ... 
} 

回答