简体   繁体   中英

how to post highest score in facebook wall (android + facebook)

I am developing an android game integrated with facebook api. how can is post my score in game to facebook wall.

I looked at open graph but could not figure out how to make it work.

Cheers, T_T

That's the code I use:

    final Bundle params = new Bundle();
    params.putString("message", "message to show on the user's wall");
    params.putString("picture", "picture url");
    params.putString("link", "link - (I put market link here)");
    params.putString("name", "Link name");
    params.putString("description", "description bellow the link");

Then call:

this.mFacebook.request("me/feed", params, "POST");

You can read more here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM