2013-07-08 148 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"); 
    }); 

    // ... 
} 

回答