1
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);
}

我想在我的新闻提要中提及我朋友的名字。

我引用了这个页面

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

4

1 回答 1

1

我现在正在这样做。

我发现这个页面更有帮助:

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

确保您的用户已登录到您的应用程序,因为您需要一个会话令牌

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

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

于 2013-02-19T06:07:05.513 回答