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.
我有一个可以将图像分享到 facebook 的移动应用程序。我墙上的图片贴有文字“XX 分钟前通过 [应用名称]”
这个应用程序归我所有。如何获取(使用 FQL 或任何其他方法)此应用共享的所有项目的列表?
最简单(也许是唯一)的方法是在发布后立即将它们存储在您自己的数据库中。
例如,如果您使用的是 JS SDK,则可以使用 FB.ui 对话框的回调函数:
FB.ui({ method: 'feed', link: 'https://developers.facebook.com/docs/dialogs/', caption: 'An example caption', }, function(response){ //callback function });
但我不确定这是否出于隐私原因允许。我至少会告诉用户您存储它。