我正在尝试通过Javascript SDK使用Dialog for“Invite Friends”:
function sendRequestToManyRecipients() { FB.ui({method: 'apprequests', message: 'My Great Request', }, requestCallback); }来自https://developers.facebook.com/docs/reference/dialogs/requests的
如果用户选择他的朋友并提交,这对我来说很好。我的问题是如何通过此功能添加“跳过”按钮,如果我还能抓住点击“跳过”的事件...任何建议都非常感谢!谢谢!
答案 0 :(得分:0)
调用apprequests时会触发ajax请求。在回调中,如果用户选择朋友,您将找到response.to数组。如果用户没有选择它是空白的。 response.to中的空白数组仅在用户跳过对话框时才会显示。