打开图表 - 发布带提及标记的消息

时间:2012-12-26 10:13:57

标签: opengraph tagging

if (facebook.isSessionValid()) {
  Bundle parameters = new Bundle();
  parameters.putString("message", message);
  mAsyncRunner.request(uid + "/feed", parameters, "POST", new WallPostRequestListener(h), null);
}

    if (facebook.isSessionValid()) {
  Bundle parameters = new Bundle();
  parameters.putString("profile", message);
  mAsyncRunner.request(uid + "/revill_:Tags", parameters, "POST", new WallPostRequestListener(h), null);
}

我想在我的新闻Feed中提及我的朋友姓名。

我参考了这个页面

https://developers.facebook.com/docs/technical-guides/opengraph/mention-tagging/

1 个答案:

答案 0 :(得分:1)

我现在正在这样做。

我发现此页面更有帮助:

http://developers.facebook.com/docs/technical-guides/opengraph/people_tagging/

确保您的用户已登录您的应用,因为您需要会话令牌

以下是有关为Open Graph集成设置应用程序的更多信息:

http://developers.facebook.com/docs/technical-guides/opengraph/opengraph-tutorial/