2

我开发了一个桌面应用程序,可以通过Facebook API C#. 直到 Facebook 在 9 月 28 日或 29 日有新的更新之前它一直运行良好,不记得确切,然后它现在不起作用。我使用格式@[fb_user_id:fb_name]来标记朋友。但是,Facebook 将在新更新中将该字符串替换为空字符串。谁知道什么是新格式或如何通过图形 api 在评论上标记朋友。

4

1 回答 1

0

这是如何在状态上标记朋友。

 protected void btnPost_Click(object sender, EventArgs e)
{
    lblPost.Text = txtPost.Text;
    var client = new FacebookClient("tokenHere");
    var parameters = new Dictionary<string, object>
                { 
                     { "message", "your status here" },
                     {"tags" , "friend id here, only number"},
                     {"place" , "place ID, only number"}
                };

    client.Post("me/feed", parameters);
    lblPost.ForeColor = System.Drawing.Color.Red;
    lblPost.Text = "Status Updated!";
}
于 2014-03-19T06:27:57.703 回答