如果我使用方法' apprequests'从FB.ui中删除弹出窗口使用此关闭按钮,它似乎不会调用我的响应回调,通常会使我的程序处于错误状态。例如:
FB.ui
method: 'apprequests'
message: "Hello"
to: data.recipients # defined elsewhere
, (response) =>
# this will never get invoked if the close button is pressed
console.log("Completed facebook request.")
这个按钮是应该调用回调,还是我的应用需要挂钩以响应按下关闭按钮时的其他事件?