0

请看这个链接,http://developers.facebook.com/docs/reference/dialogs/requests/,我用它通过对话框sendRequestViaMultiFriendSelector使用facebook api发送请求,现在我只想限制最多4个我们最多可以发送 4 人的请求。

4

1 回答 1

3

在您在问题中链接的同一页面中,底部有一个可用于此特定对话框的可能参数表。其中一个参数是 *max_recipients* 参数,它说:

一个整数,指定用户可以在朋友选择器中选择的最大朋友数。移动设备不支持此参数。

所以基本上:

FB.ui({
    method: "apprequests",
    message: "Hey, come see this app",
    max_recipients: 4
}, requestCallback);
于 2012-04-19T11:14:49.340 回答