我正在使用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);
}
);
谁能告诉我订阅可能有什么问题?发送工作正常。