使用Graph API在Facebook上标记朋友

时间:2016-06-26 16:45:19

标签: php facebook-graph-api facebook-php-sdk

我用PHP开发了一个应用程序 1。处理用户朋友的一些数据(使用taggable_friends 提取),然后生成图像并将其保存在应用服务器上。
2. 向用户显示图像,并提供在时间轴上共享图像的选项 3。现在我需要在时间轴帖子中标记一些朋友 [因为我应该使用taggable_friends进行标记,而不仅仅是根据Fb指南获取用户的朋友]

我正在使用此代码获取好友列表

$friends = $fb->get('/me/taggable_friends?fields=name,first_name,id,picture.width(80).height(80)&limit=500')->getGraphEdge()->asArray();

但我不知道如何在使用Javascript共享时在时间轴上标记朋友[使用PHP]。请帮忙。我找不到能够在2016年完成这项工作的答案。

分享的Javascript代码

function shareOnFacebook() {
var response = '';
 FB.ui(
  {
   method: 'share',
    href: linkToShare,
  },
   function(response) {
   if (response && response.post_id) { } else {
     alert('Something went wrong !');
    }
   }
     );
 };

0 个答案:

没有答案