无法使用我的fb Feed通过API添加提及标记(@ tag)

时间:2015-07-20 07:59:46

标签: facebook facebook-graph-api

我想在我的Feed中提及标签用户/页面(例如在Facebook中使用@ symbol normaly进行标记)。我尝试了以下Graph API,

 https://graph.facebook.com/v2.4/feed

使用以下参数

  message = "My message @[<user_id>:1:<username>]"

我尝试使用图形API资源管理器,Feed已发布,但标记的人/页面无法正常工作,它不会作为纯文本链接出现。

我想发布如附图所示的Feed,如何实现它需要帮助,

enter image description here

2 个答案:

答案 0 :(得分:2)

补充@ Tobi的回答。以下是有关如何发布帖子和标记朋友的完整示例:

FB.api(
    "/me/feed",
    "POST",
    {
        "message": "This is a test message",
        "place": "link",
        "tags": "friend_id1,friend_id2"
    },
    function (response) {
      if (response && !response.error) {
        console.log(response); /* post id will be returned */
      }
    }
);

答案 1 :(得分:1)