Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何使用
FB.ui({ method: 'apprequests', message: 'Gooby pls' }, requestCallback);
仅向尚未收到请求的朋友发送对我的应用程序的请求?
如果您有一个数据库,其中包含某种谁收到了谁的请求(可能已经有),您可以使用请求对话框的exclude_ids字段将它们从列表中删除。只需列出用户 ID:
exclude_ids
FB.ui({ method: 'apprequests', message: 'Gooby pls', exclude_ids: ['42'] // add real facebook user ids here }, requestCallback);