我正在开发一款与facebook api集成的Android游戏。怎么能在游戏中将我的分数发布到Facebook墙上。
我查看了开放式图表,但无法弄清楚如何使其工作。
干杯, T_T
答案 0 :(得分:6)
这就是我使用的代码:
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");
然后致电:
this.mFacebook.request("me/feed", params, "POST");
您可以阅读更多here。