如何通过facebook php sdk标记评论中的用户?

如何通过facebook php sdk标记评论中的用户?,php,facebook,facebook-graph-api,facebook-php-sdk,Php,Facebook,Facebook Graph Api,Facebook Php Sdk,我正在尝试在页面帖子评论中标记用户 $fb_id = 'facebook_user_id_here'; $fb_name = 'facebook_user_name_and_surname_here'; $request = new FacebookRequest( $this->session, 'POST', $comment, array( 'access_token' => $this->page_access_toke

我正在尝试在页面帖子评论中标记用户

$fb_id = 'facebook_user_id_here';
$fb_name = 'facebook_user_name_and_surname_here';
$request = new FacebookRequest(
    $this->session,
    'POST',
    $comment,
    array(
         'access_token' => $this->page_access_token, //it is access token of my page
         'message       => "Text here @[".$fb_id.":1:".$fb_name."]"
          )
  );

它只显示姓名,不显示Fb个人资料URL。

正如CBroe在其评论中提到的,目前使用API是不可能的

作为参考,这称为“提及”或“提及标记”,个人档案只能在打开的图形操作()上的消息中执行此操作


页面也可以在评论中提及其他页面。()

您不能通过API在评论中标记用户。我想知道我们是否有权限或任何类型的策略可以使用此功能。联系Facebook真是太难了。。。有时觉得他们不希望开发人员使用FB的东西:/