Is it possible to exclude certain Facebook IDs in the apprequests dialog like the exclude_ids parameter in the old fb:multi-friend-selector? I know about the filters property, but it seems not suffic开发者_开发百科ient.
UPDATE: Exclude Ids are now supported with Requests 2.0. You can pass a comma delimited list of UIDs with:
FB.ui({method: 'apprequests',
message: 'Hello World',
exclude_ids: '499802852,499804089'
}, requestCallback);
Docs are at: https://developers.facebook.com/docs/reference/dialogs/requests/
It should be an array, example:
FB.ui({method: 'apprequests',
message: 'Hello World',
exclude_ids: ['499802852','499804089'],
}, requestCallback);
精彩评论