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

ニュースフィードで友達の名前を挙げたいです。

i このページを参考にしました

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

4

1 に答える 1

1

I'm in the process of doing this right now.

I found this page more helpful:

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

Make sure you're user is logged into your app as you'll need a session token

Here is more info about setting you app up for Open Graph integration:

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

于 2013-02-19T06:07:05.513 に答える