1

我正在使用FB.ui创建发送对话框...我试图在用户发送消息后获得回调,但由于某种原因它无法正常工作。

我试着用FB.event.subscribe

   FB.ui({                                                                                                                                                                   
     method: 'send',                                                                                                                                                         
     name: 'You\'re invited to join!',                                                                                                                          
     link: 'http://anexample.com',                                                                                                                                                              
   }); 

   FB.Event.subscribe('message.send',                                                                                                                                          
      function(response){                                                                                                                                                      
       alert('You sent a message from the URL ' + response);                                                                                                                                 
     }                                                                                                                                                                         
  );

谁能告诉我订阅可能有什么问题?发送工作正常。

4

1 回答 1

2

使用以下回调:

FB.ui({ 
       method:'send',
       name: 'You\'re invited to join!',                                    
       link: 'http://anexample.com',
    },
    function(response) {
      //callback
    }
); 

您正在使用的回调用于发送按钮。

于 2012-06-19T20:01:41.390 回答